diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2021-01-26 04:24:28 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2021-01-26 05:29:36 +0100 |
commit | b964bf53e540262f2d12672b3cca10842c0172e7 (patch) | |
tree | 16eb741d38b54ce88cc282331579ecec09115b7a /fs/splice.c | |
parent | take the guts of file-to-pipe splice into a helper function (diff) | |
download | linux-b964bf53e540262f2d12672b3cca10842c0172e7.tar.xz linux-b964bf53e540262f2d12672b3cca10842c0172e7.zip |
teach sendfile(2) to handle send-to-pipe directly
no point going through the intermediate pipe
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/splice.c')
-rw-r--r-- | fs/splice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/splice.c b/fs/splice.c index 74f968c65a93..b06846f1e6ee 100644 --- a/fs/splice.c +++ b/fs/splice.c @@ -1002,7 +1002,7 @@ static int splice_pipe_to_pipe(struct pipe_inode_info *ipipe, struct pipe_inode_info *opipe, size_t len, unsigned int flags); -static long splice_file_to_pipe(struct file *in, +long splice_file_to_pipe(struct file *in, struct pipe_inode_info *opipe, loff_t *offset, size_t len, unsigned int flags) |