Skip to content

Commit

Permalink
md/md-bitmap: remove unnecessary local variable in backlog_store()
Browse files Browse the repository at this point in the history
[ Upstream commit b4d1296 ]

Local variable is definied first in the beginning of backlog_store(),
there is no need to define it again.

Fixes: 8c13ab1 ("md/bitmap: don't set max_write_behind if there is no write mostly device")
Signed-off-by: Yu Kuai <yukuai3@huawei.com>
Link: https://lore.kernel.org/r/20230706083727.608914-2-yukuai1@huaweicloud.com
Signed-off-by: Song Liu <song@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
Yu Kuai authored and gregkh committed Sep 13, 2023
1 parent 3829cb3 commit e970bc3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions drivers/md/md-bitmap.c
Expand Up @@ -2504,8 +2504,6 @@ backlog_store(struct mddev *mddev, const char *buf, size_t len)
mddev_destroy_serial_pool(mddev, NULL, false);
} else if (backlog && !mddev->serial_info_pool) {
/* serial_info_pool is needed since backlog is not zero */
struct md_rdev *rdev;

rdev_for_each(rdev, mddev)
mddev_create_serial_pool(mddev, rdev, false);
}
Expand Down

0 comments on commit e970bc3

Please sign in to comment.