Fix: pipe: stop using ->can_merge (v5.1)
[lttng-modules.git] / lib / ringbuffer / ring_buffer_splice.c
index 8d146667d41c0327c5a5847965fd77bc7ccc2f23..93cad295e0e9495ff3ec8fdad8efc98ecb11cdb4 100644 (file)
@@ -56,7 +56,9 @@ static void lib_ring_buffer_pipe_buf_release(struct pipe_inode_info *pipe,
 }
 
 static const struct pipe_buf_operations ring_buffer_pipe_buf_ops = {
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(5,1,0))
        .can_merge = 0,
+#endif
 #if (LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0))
        .map = generic_pipe_buf_map,
        .unmap = generic_pipe_buf_unmap,
This page took 0.023222 seconds and 4 git commands to generate.