X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng%2Fcommands%2Fenable_channels.c;fp=src%2Fbin%2Flttng%2Fcommands%2Fenable_channels.c;h=19490477e4a65f4e1d8cee8b61d53787483cebb3;hp=27d4618a9d0fd5b2f40f7c0dd7b05055bbd90d79;hb=8193ef173f00da2bd3513d6e0194671265b7b2c0;hpb=491d15395b58df09f8a3e7ba7404eb1f46392b79 diff --git a/src/bin/lttng/commands/enable_channels.c b/src/bin/lttng/commands/enable_channels.c index 27d4618a9..19490477e 100644 --- a/src/bin/lttng/commands/enable_channels.c +++ b/src/bin/lttng/commands/enable_channels.c @@ -46,7 +46,7 @@ static int opt_buffer_pid; static int opt_buffer_global; static struct { bool set; - uint32_t interval; + uint64_t interval; } opt_monitor_timer; static struct { bool set; @@ -534,24 +534,19 @@ int cmd_enable_channels(int argc, const char **argv) } case OPT_MONITOR_TIMER: { - unsigned long v; + unsigned long long v; errno = 0; opt_arg = poptGetOptArg(pc); - v = strtoul(opt_arg, NULL, 0); + v = strtoull(opt_arg, NULL, 0); if (errno != 0 || !isdigit(opt_arg[0])) { ERR("Wrong value in --monitor-timer parameter: %s", opt_arg); ret = CMD_ERROR; goto end; } - if (v != (uint32_t) v) { - ERR("32-bit overflow in --monitor-timer parameter: %s", opt_arg); - ret = CMD_ERROR; - goto end; - } - opt_monitor_timer.interval = (uint32_t) v; + opt_monitor_timer.interval = (uint64_t) v; opt_monitor_timer.set = true; - DBG("Channel monitor timer interval set to %d", opt_monitor_timer.interval); + DBG("Channel monitor timer interval set to %" PRIu64" (µs)", opt_monitor_timer.interval); break; } case OPT_BLOCKING_TIMEOUT: