From: Jérémie Galarneau Date: Thu, 6 Aug 2015 19:01:12 +0000 (-0400) Subject: Log agent reply in disable_event() X-Git-Tag: v2.8.0-rc1~514 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=517992f8078c4542d2e95b369bb14a152f327436 Log agent reply in disable_event() Signed-off-by: Jérémie Galarneau --- diff --git a/src/bin/lttng-sessiond/agent.c b/src/bin/lttng-sessiond/agent.c index 92307f85f..ab6905190 100644 --- a/src/bin/lttng-sessiond/agent.c +++ b/src/bin/lttng-sessiond/agent.c @@ -426,6 +426,7 @@ static int disable_event(struct agent_app *app, struct agent_event *event) { int ret; uint64_t data_size; + uint32_t reply_ret_code; struct lttcomm_agent_disable msg; struct lttcomm_agent_generic_reply reply; @@ -455,7 +456,9 @@ static int disable_event(struct agent_app *app, struct agent_event *event) goto error_io; } - switch (be32toh(reply.ret_code)) { + reply_ret_code = be32toh(reply.ret_code); + log_reply_code(reply_ret_code); + switch (reply_ret_code) { case AGENT_RET_CODE_SUCCESS: break; case AGENT_RET_CODE_UNKNOWN_NAME: