X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=lttng%2Fcommands%2Fenable_channels.c;h=aac5fa4979c9d274b62f72ee61bcdd67c311dd9b;hb=eeac7d463a09ac924c3c98f1fa5fa6c19748b4de;hp=13511cc869803097edff9bc2542a35218b38e870;hpb=a881057e930058e657a55f0b07ce304bf14d86be;p=lttng-tools.git diff --git a/lttng/commands/enable_channels.c b/lttng/commands/enable_channels.c index 13511cc86..aac5fa497 100644 --- a/lttng/commands/enable_channels.c +++ b/lttng/commands/enable_channels.c @@ -36,6 +36,7 @@ static char *opt_cmd_name; static char *opt_session_name; static int opt_pid_all; static int opt_userspace; +static char *opt_cmd_name; static pid_t opt_pid; static struct lttng_channel chan; @@ -118,6 +119,11 @@ static int enable_channel(char *session_name) dom.type = LTTNG_DOMAIN_UST_PID; dom.attr.pid = opt_pid; DBG("PID %d set to lttng handle", opt_pid); + } else if (opt_userspace && opt_cmd_name == NULL) { + dom.type = LTTNG_DOMAIN_UST; + } else if (opt_userspace && opt_cmd_name != NULL) { + dom.type = LTTNG_DOMAIN_UST_EXEC_NAME; + strncpy(dom.attr.exec_name, opt_cmd_name, NAME_MAX); } else { ERR("Please specify a tracer (--kernel or --userspace)"); ret = CMD_NOT_IMPLEMENTED; @@ -177,8 +183,8 @@ static void init_channel_config(void) chan.attr.switch_timer_interval = DEFAULT_CHANNEL_SWITCH_TIMER; chan.attr.read_timer_interval = DEFAULT_CHANNEL_READ_TIMER; - chan.attr.subbuf_size = DEFAULT_CHANNEL_SUBBUF_SIZE; - chan.attr.num_subbuf = DEFAULT_CHANNEL_SUBBUF_NUM; + chan.attr.subbuf_size = DEFAULT_UST_CHANNEL_SUBBUF_SIZE; + chan.attr.num_subbuf = DEFAULT_UST_CHANNEL_SUBBUF_NUM; chan.attr.output = DEFAULT_CHANNEL_OUTPUT; } } @@ -203,10 +209,6 @@ int cmd_enable_channels(int argc, const char **argv) usage(stderr); ret = CMD_SUCCESS; goto end; - case OPT_USERSPACE: - opt_userspace = 1; - opt_cmd_name = poptGetOptArg(pc); - break; case OPT_DISCARD: chan.attr.overwrite = 0; DBG("Channel set to discard"); @@ -231,6 +233,10 @@ int cmd_enable_channels(int argc, const char **argv) chan.attr.read_timer_interval = atoi(poptGetOptArg(pc)); DBG("Channel read timer interval set to %d", chan.attr.read_timer_interval); break; + case OPT_USERSPACE: + opt_userspace = 1; + opt_cmd_name = poptGetOptArg(pc); + break; default: usage(stderr); ret = CMD_UNDEFINED;