Fix: unchecked posix_fadvise() return value
[lttng-tools.git] / src / common / consumer / consumer.c
index cb05a1eb411c9f522b37efaf8600ecdca930352f..321703a5157305104f855a3834a55ddf81434bc5 100644 (file)
@@ -1232,6 +1232,7 @@ void lttng_consumer_should_exit(struct lttng_consumer_local_data *ctx)
 void lttng_consumer_sync_trace_file(struct lttng_consumer_stream *stream,
                off_t orig_offset)
 {
+       int ret;
        int outfd = stream->out_fd;
 
        /*
@@ -1262,8 +1263,11 @@ void lttng_consumer_sync_trace_file(struct lttng_consumer_stream *stream,
         * defined. So it can be expected to lead to lower throughput in
         * streaming.
         */
-       posix_fadvise(outfd, orig_offset - stream->max_sb_size,
+       ret = posix_fadvise(outfd, orig_offset - stream->max_sb_size,
                        stream->max_sb_size, POSIX_FADV_DONTNEED);
+       if (ret) {
+               WARN("posix_fadvise() error (%i)", ret);
+       }
 }
 
 /*
This page took 0.023061 seconds and 4 git commands to generate.