On-disk multiple tracefiles circular buffer
[lttng-tools.git] / src / bin / lttng-sessiond / ust-app.c
index fdcad1c304ab0c717fb3f619b812de6d17433b31..4c9d227af008a285bd17d8732ed906803351f275 100644 (file)
@@ -1298,6 +1298,9 @@ static void shadow_copy_channel(struct ust_app_channel *ua_chan,
        strncpy(ua_chan->name, uchan->name, sizeof(ua_chan->name));
        ua_chan->name[sizeof(ua_chan->name) - 1] = '\0';
 
+       ua_chan->tracefile_size = uchan->tracefile_size;
+       ua_chan->tracefile_count = uchan->tracefile_count;
+
        /* Copy event attributes since the layout is different. */
        ua_chan->attr.subbuf_size = uchan->attr.subbuf_size;
        ua_chan->attr.num_subbuf = uchan->attr.num_subbuf;
This page took 0.026183 seconds and 5 git commands to generate.