From: David Goulet Date: Tue, 25 Jun 2013 17:37:59 +0000 (-0400) Subject: Fix: add debug statement in kernel flush metadata X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=169d2cb797d7f60f45dfa9017cdb1e28bb0873f6 Fix: add debug statement in kernel flush metadata Signed-off-by: David Goulet --- diff --git a/src/bin/lttng-sessiond/kernel.c b/src/bin/lttng-sessiond/kernel.c index 064fdc382..69665058a 100644 --- a/src/bin/lttng-sessiond/kernel.c +++ b/src/bin/lttng-sessiond/kernel.c @@ -460,6 +460,8 @@ int kernel_metadata_flush_buffer(int fd) { int ret; + DBG("Kernel flushing metadata buffer on fd %d", fd); + ret = kernctl_buffer_flush(fd); if (ret < 0) { ERR("Fail to flush metadata buffers %d (ret: %d)", fd, ret);