Remove splice_to_pipe kallsyms wrapper
[lttng-modules.git] / src / lib / ringbuffer / ring_buffer_splice.c
index 375255b51cf1725a25927912be211179a4dd3bc9..f34bc35544f2e6d16799e78b55a16a9ec0249be7 100644 (file)
@@ -12,9 +12,9 @@
 
 #include <linux/module.h>
 #include <linux/fs.h>
+#include <linux/splice.h>
 #include <lttng/kernel-version.h>
 
-#include <wrapper/splice.h>
 #include <ringbuffer/backend.h>
 #include <ringbuffer/frontend.h>
 #include <ringbuffer/vfs.h>
@@ -166,7 +166,7 @@ static int subbuf_splice_actor(struct file *in,
        if (!spd.nr_pages)
                return 0;
 
-       return wrapper_splice_to_pipe(pipe, &spd);
+       return splice_to_pipe(pipe, &spd);
 }
 
 ssize_t lib_ring_buffer_splice_read(struct file *in, loff_t *ppos,
This page took 0.025373 seconds and 4 git commands to generate.