Fix: kernel snapshot handling of EAGAIN
[lttng-tools.git] / src / common / kernel-consumer / kernel-consumer.c
index 1c2751b59b352338c3df6c14b244707b7f97693e..6421932301dbbb383e1660f345d36e3d69a77f58 100644 (file)
@@ -60,7 +60,11 @@ int lttng_kconsumer_take_snapshot(struct lttng_consumer_stream *stream)
        int infd = stream->wait_fd;
 
        ret = kernctl_snapshot(infd);
-       if (ret != 0) {
+       /*
+        * -EAGAIN is not an error, it just means that there is no data to
+        *  be read.
+        */
+       if (ret != 0 && ret != -EAGAIN) {
                PERROR("Getting sub-buffer snapshot.");
        }
 
This page took 0.024673 seconds and 4 git commands to generate.