X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=lttng%2Fcommands%2Fenable_events.c;fp=lttng%2Fcommands%2Fenable_events.c;h=e435e1f7858f0d15133a31d5ad8004fbd359925b;hp=a043eb43f3bdebd5b23a6d209e10f1323195945e;hb=e14f64a857c09162959b50c6c7f2abaaaa7eee49;hpb=330be774319277f86ecf9445603bf97dc3249ca3 diff --git a/lttng/commands/enable_events.c b/lttng/commands/enable_events.c index a043eb43f..e435e1f78 100644 --- a/lttng/commands/enable_events.c +++ b/lttng/commands/enable_events.c @@ -35,7 +35,6 @@ static char *opt_event_list; static int opt_event_type; static int opt_kernel; static char *opt_session_name; -static int opt_pid_all; static int opt_userspace; static char *opt_cmd_name; static int opt_enable_all; @@ -62,11 +61,10 @@ static struct poptOption long_options[] = { /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */ {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0}, {"session", 's', POPT_ARG_STRING, &opt_session_name, 0, 0, 0}, - {"all-events", 'a', POPT_ARG_VAL, &opt_enable_all, 1, 0, 0}, + {"all", 'a', POPT_ARG_VAL, &opt_enable_all, 1, 0, 0}, {"channel", 'c', POPT_ARG_STRING, &opt_channel_name, 0, 0, 0}, {"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0}, {"userspace", 'u', POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, &opt_cmd_name, OPT_USERSPACE, 0, 0}, - {"all", 0, POPT_ARG_VAL, &opt_pid_all, 1, 0, 0}, {"pid", 'p', POPT_ARG_INT, &opt_pid, 0, 0, 0}, {"tracepoint", 0, POPT_ARG_NONE, 0, OPT_TRACEPOINT, 0, 0}, {"probe", 0, POPT_ARG_STRING, &opt_probe, OPT_PROBE, 0, 0}, @@ -93,11 +91,12 @@ static void usage(FILE *ofp) fprintf(ofp, " -h, --help Show this help\n"); fprintf(ofp, " -s, --session Apply on session name\n"); fprintf(ofp, " -c, --channel Apply on this channel\n"); - fprintf(ofp, " -a, --all-events Enable all tracepoints\n"); + fprintf(ofp, " -a, --all Enable all tracepoints\n"); fprintf(ofp, " -k, --kernel Apply for the kernel tracer\n"); fprintf(ofp, " -u, --userspace [CMD] Apply for the user-space tracer\n"); - fprintf(ofp, " --all If -u, apply on all traceable apps\n"); - fprintf(ofp, " -p, --pid PID If -u, apply on a specific PID\n"); + fprintf(ofp, " If no CMD, the domain used is UST global\n"); + fprintf(ofp, " or else the domain is UST EXEC_NAME\n"); + fprintf(ofp, " -p, --pid PID If -u, apply to specific PID (domain: UST PID)\n"); fprintf(ofp, "\n"); fprintf(ofp, "Event options:\n"); fprintf(ofp, " --tracepoint Tracepoint event (default)\n"); @@ -206,7 +205,7 @@ static int enable_events(char *session_name) } if (opt_kernel && opt_userspace) { - MSG("Choose only one of --kernel or --userspace"); + ERR("Can't use -k/--kernel and -u/--userspace together"); ret = CMD_FATAL; goto error; } @@ -224,7 +223,7 @@ static int enable_events(char *session_name) 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)"); + ERR("Please specify a tracer (-k/--kernel or -u/--userspace)"); ret = CMD_NOT_IMPLEMENTED; goto error; } @@ -318,9 +317,8 @@ static int enable_events(char *session_name) goto error; } } else if (opt_userspace) { /* User-space tracer action */ - if (!opt_pid_all) { - MSG("Only supporting tracing all UST processes " - "(-u --all) for now."); + if (opt_cmd_name != NULL || opt_pid) { + MSG("Only supporting tracing all UST processes (-u) for now."); ret = CMD_NOT_IMPLEMENTED; goto error; } @@ -352,7 +350,7 @@ static int enable_events(char *session_name) goto error; } } else { - ERR("Please specify a tracer (--kernel or --userspace)"); + ERR("Please specify a tracer (-k/--kernel or -u/--userspace)"); goto error; }