lkml.org 
[lkml]   [2022]   [Sep]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH -next] block: Remove unused variable 'added'
Date
Reported by Clang [-Wunused-but-set-variable]

'commit 480cb846c27b ("block: convert to advancing variants of iov_iter_get_pages{,_alloc}()")'
This commit converted iov_iter_advance() to iov_iter_revert(), and
not uses variable 'added' anymore but forgot to delete it.

Since 'added' is useless now, remove it for code cleaning.

Signed-off-by: Chen Zhongjin <chenzhongjin@huawei.com>
---
block/blk-map.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/block/blk-map.c b/block/blk-map.c
index 7196a6b64c80..1d5e609589c0 100644
--- a/block/blk-map.c
+++ b/block/blk-map.c
@@ -251,7 +251,7 @@ static int bio_map_user_iov(struct request *rq, struct iov_iter *iter,
while (iov_iter_count(iter)) {
struct page **pages;
ssize_t bytes;
- size_t offs, added = 0;
+ size_t offs;
int npages;

bytes = iov_iter_get_pages_alloc2(iter, &pages, LONG_MAX, &offs);
@@ -280,7 +280,6 @@ static int bio_map_user_iov(struct request *rq, struct iov_iter *iter,
break;
}

- added += n;
bytes -= n;
offs = 0;
}
--
2.17.1
\
 
 \ /
  Last update: 2022-09-30 13:17    [W:0.021 / U:0.556 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site