From 08b1dcd31a1e07ed24c52aad7f63896261461c7c Mon Sep 17 00:00:00 2001 From: David Goulet Date: Thu, 13 Feb 2014 10:42:58 -0500 Subject: [PATCH] Fix: handle snapshot ENODATA in live timer Signed-off-by: David Goulet --- src/common/consumer-timer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/consumer-timer.c b/src/common/consumer-timer.c index b867a35bf..dc6f2f7fc 100644 --- a/src/common/consumer-timer.c +++ b/src/common/consumer-timer.c @@ -154,8 +154,8 @@ static int check_kernel_stream(struct lttng_consumer_stream *stream) } ret = kernctl_snapshot(stream->wait_fd); if (ret < 0) { - if (errno != EAGAIN) { - ERR("Taking kernel snapshot"); + if (errno != EAGAIN && errno != ENODATA) { + PERROR("live timer kernel snapshot"); ret = -1; goto error_unlock; } -- 2.34.1