diff options
author | Amir Goldstein <amir73il@gmail.com> | 2023-12-12 10:44:36 +0100 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2023-12-12 16:19:59 +0100 |
commit | 0f292086c22b43202daffc14b585d3b54b9a1206 (patch) | |
tree | 3c2efb26f57846ae3413be927f7e5cf8e1b0993e /fs/internal.h | |
parent | fs: use do_splice_direct() for nfsd/ksmbd server-side-copy (diff) | |
download | linux-0f292086c22b43202daffc14b585d3b54b9a1206.tar.xz linux-0f292086c22b43202daffc14b585d3b54b9a1206.zip |
splice: return type ssize_t from all helpers
Not sure why some splice helpers return long, maybe historic reasons.
Change them all to return ssize_t to conform to the splice methods and
to the rest of the helpers.
Suggested-by: Christian Brauner <brauner@kernel.org>
Link: https://lore.kernel.org/r/20231208-horchen-helium-d3ec1535ede5@brauner/
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Link: https://lore.kernel.org/r/20231212094440.250945-2-amir73il@gmail.com
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/internal.h')
-rw-r--r-- | fs/internal.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/internal.h b/fs/internal.h index 58e43341aebf..4eaa758e3bfd 100644 --- a/fs/internal.h +++ b/fs/internal.h @@ -243,10 +243,10 @@ int do_statx(int dfd, struct filename *filename, unsigned int flags, /* * fs/splice.c: */ -long splice_file_to_pipe(struct file *in, - struct pipe_inode_info *opipe, - loff_t *offset, - size_t len, unsigned int flags); +ssize_t splice_file_to_pipe(struct file *in, + struct pipe_inode_info *opipe, + loff_t *offset, + size_t len, unsigned int flags); /* * fs/xattr.c: |