projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e0b3ef1
)
net/rds: remove variable total_copied
author
Colin Ian King
<colin.i.king@gmail.com>
Mon, 24 Oct 2022 13:50:46 +0000
(14:50 +0100)
committer
Jakub Kicinski
<kuba@kernel.org>
Thu, 27 Oct 2022 03:14:40 +0000
(20:14 -0700)
Variable total_copied is just being incremented and it's never used
anywhere else. The variable and the increment are redundant so
remove it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link:
https://lore.kernel.org/r/20221024135046.2159523-1-colin.i.king@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/rds/message.c
patch
|
blob
|
history
diff --git
a/net/rds/message.c
b/net/rds/message.c
index 44dbc612ef549c0ffb94d563379e3d891c1c38cd..b47e4f0a163934b561cecc5fc89711b0ecfee2ce 100644
(file)
--- a/
net/rds/message.c
+++ b/
net/rds/message.c
@@
-366,7
+366,6
@@
static int rds_message_zcopy_from_user(struct rds_message *rm, struct iov_iter *
struct scatterlist *sg;
int ret = 0;
int length = iov_iter_count(from);
- int total_copied = 0;
struct rds_msg_zcopy_info *info;
rm->m_inc.i_hdr.h_len = cpu_to_be32(iov_iter_count(from));
@@
-404,7
+403,6
@@
static int rds_message_zcopy_from_user(struct rds_message *rm, struct iov_iter *
ret = -EFAULT;
goto err;
}
- total_copied += copied;
length -= copied;
sg_set_page(sg, pages, copied, start);
rm->data.op_nents++;