aboutsummaryrefslogtreecommitdiffstats
path: root/fs/splice.c
diff options
context:
space:
mode:
authorJiapeng Chong <jiapeng.chong@linux.alibaba.com>2023-03-07 16:49:18 +0800
committerChristian Brauner (Microsoft) <brauner@kernel.org>2023-03-09 10:10:31 +0100
commitc3a4aec055ec275c9f860e88d37e97248927d898 (patch)
treefef6e55849f8877166b2c6e5faac220b771413d9 /fs/splice.c
parent5b8e5319affc977d24b8ce7edd295907e969e217 (diff)
downloadlinux-c3a4aec055ec275c9f860e88d37e97248927d898.tar.gz
splice: Remove redundant assignment to ret
The variable ret belongs to redundant assignment and can be deleted. fs/splice.c:940:2: warning: Value stored to 'ret' is never read. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=4406 Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com> Signed-off-by: Christian Brauner (Microsoft) <brauner@kernel.org>
Diffstat (limited to 'fs/splice.c')
-rw-r--r--fs/splice.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/splice.c b/fs/splice.c
index 2e76dbb81a8fc..2c3dec2b6dfaf 100644
--- a/fs/splice.c
+++ b/fs/splice.c
@@ -937,7 +937,6 @@ ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
/*
* Do the splice.
*/
- ret = 0;
bytes = 0;
len = sd->total_len;
flags = sd->flags;