md/raid1: Clean up local variable 'b' from raid1_read_request()
authorYu Kuai <yukuai3@huawei.com>
Thu, 1 Aug 2024 13:30:08 +0000 (21:30 +0800)
committerSong Liu <song@kernel.org>
Tue, 27 Aug 2024 17:08:22 +0000 (10:08 -0700)
commit2d389a759d02fa30bd686c797ad620b1da9d1320
tree5a1137c8e7b19d9c59eca7d37711e968a2847d43
parent86ad4cda79e0dade87d4bb0d32e1fe541d4a63e8
md/raid1: Clean up local variable 'b' from raid1_read_request()

The local variable will only be used onced, in the error path that
read_balance() failed to find a valid rdev to read. Since now the rdev
is ensured can't be removed from conf while IO is still pending,
remove the local variable and dereference rdev directly.

Since we're here, also remove an extra empty line, and unnecessary
type conversion from sector_t(u64) to unsigned long long.

Signed-off-by: Yu Kuai <yukuai3@huawei.com>
Link: https://lore.kernel.org/r/20240801133008.459998-1-yukuai1@huaweicloud.com
Signed-off-by: Song Liu <song@kernel.org>
drivers/md/raid1.c