1SPLICE_FROM_PIPE(9) splice API SPLICE_FROM_PIPE(9)
2
3
4
6 splice_from_pipe - splice data from a pipe to a file
7
9 ssize_t splice_from_pipe(struct pipe_inode_info * pipe,
10 struct file * out, loff_t * ppos, size_t len,
11 unsigned int flags, splice_actor * actor);
12
14 pipe
15 pipe to splice from
16
17 out
18 file to splice to
19
20 ppos
21 position in out
22
23 len
24 how many bytes to splice
25
26 flags
27 splice modifier flags
28
29 actor
30 handler that splices the data
31
33 See __splice_from_pipe. This function locks the pipe inode, otherwise
34 it's identical to __splice_from_pipe.
35
37Kernel Hackers Manual 2.6. November 2011 SPLICE_FROM_PIPE(9)