]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
bcache: remove redundant assignment to variable cur_idx
authorColin Ian King <colin.i.king@gmail.com>
Mon, 20 Nov 2023 05:24:56 +0000 (13:24 +0800)
committerJens Axboe <axboe@kernel.dk>
Mon, 20 Nov 2023 16:17:51 +0000 (09:17 -0700)
commitbe93825f0e6428c2d3f03a6e4d447dc48d33d7ff
tree0fcad897d51313a07af3f82b29cf035d28a77886
parent777967e7e9f6f5f3e153abffb562bffaf4430d26
bcache: remove redundant assignment to variable cur_idx

Variable cur_idx is being initialized with a value that is never read,
it is being re-assigned later in a while-loop. Remove the redundant
assignment. Cleans up clang scan build warning:

drivers/md/bcache/writeback.c:916:2: warning: Value stored to 'cur_idx'
is never read [deadcode.DeadStores]

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Coly Li <colyli@suse.de>
Signed-off-by: Coly Li <colyli@suse.de>
Link: https://lore.kernel.org/r/20231120052503.6122-4-colyli@suse.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/writeback.c