Namespace kernel version macros
[lttng-modules.git] / wrapper / splice.c
CommitLineData
5dd620fa 1/*
886d51a3 2 * wrapper/splice.c
5dd620fa 3 *
711e3212 4 * wrapper around splice_to_pipe. Using KALLSYMS to get its address when
5dd620fa 5 * available, else we need to have a kernel that exports this function to GPL
9cab4463 6 * modules. The export was introduced in kernel 4.2.
5dd620fa 7 *
886d51a3
MD
8 * Copyright (C) 2011-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9 *
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; only
13 * version 2.1 of the License.
14 *
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
5dd620fa
MD
23 */
24
9cab4463
MD
25#include <lttng-kernel-version.h>
26
27#if (defined(CONFIG_KALLSYMS) \
360d3efe 28 && (LTTNG_LINUX_VERSION_CODE < LTTNG_KERNEL_VERSION(4,2,0)))
5dd620fa
MD
29
30#include <linux/kallsyms.h>
31#include <linux/fs.h>
32#include <linux/splice.h>
5a2f5e92 33#include <wrapper/kallsyms.h>
5dd620fa
MD
34
35static
36ssize_t (*splice_to_pipe_sym)(struct pipe_inode_info *pipe,
37 struct splice_pipe_desc *spd);
38
39ssize_t wrapper_splice_to_pipe(struct pipe_inode_info *pipe,
40 struct splice_pipe_desc *spd)
41{
42 if (!splice_to_pipe_sym)
c539a324 43 splice_to_pipe_sym = (void *) kallsyms_lookup_funcptr("splice_to_pipe");
5dd620fa
MD
44 if (splice_to_pipe_sym) {
45 return splice_to_pipe_sym(pipe, spd);
46 } else {
e36de50d 47 printk_once(KERN_WARNING "LTTng: splice_to_pipe symbol lookup failed.\n");
5dd620fa
MD
48 return -ENOSYS;
49 }
50}
51
52#else
53
54#include <linux/fs.h>
55#include <linux/splice.h>
56
57ssize_t wrapper_splice_to_pipe(struct pipe_inode_info *pipe,
58 struct splice_pipe_desc *spd)
59{
60 return splice_to_pipe(pipe, spd);
61}
62
63#endif
This page took 0.038119 seconds and 4 git commands to generate.