From de65565af61d60ddad1b309c969d6a2129ba4f19 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 2 May 2013 13:48:48 -0400 Subject: [PATCH] lttng UI: round up trace file size to subbuf size if needed Signed-off-by: Mathieu Desnoyers --- src/bin/lttng/commands/enable_channels.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/bin/lttng/commands/enable_channels.c b/src/bin/lttng/commands/enable_channels.c index 0894f051b..4816d62c6 100644 --- a/src/bin/lttng/commands/enable_channels.c +++ b/src/bin/lttng/commands/enable_channels.c @@ -208,11 +208,9 @@ static int enable_channel(char *session_name) if ((chan.attr.tracefile_size > 0) && (chan.attr.tracefile_size < chan.attr.subbuf_size)) { - ERR("Tracefile_size must be greater than or equal to subbuf_size " - "(%" PRIu64 " < %" PRIu64 ")", + WARN("Tracefile size rounded up from (%" PRIu64 ") to subbuffer size (%" PRIu64 ")", chan.attr.tracefile_size, chan.attr.subbuf_size); - ret = CMD_ERROR; - goto error; + chan.attr.tracefile_size = chan.attr.subbuf_size; } /* Setting channel output */ -- 2.34.1