[PATCH 1/5] md/raid1,raid10: drop unused mddev arg from check_decay_read_errors()
Hiroshi Nishida <[email protected]>
| Newsgroups | gmane.linux.kernel,gmane.linux.raid |
|---|---|
| Message-ID | <[email protected]> |
check_decay_read_errors() only ever touches the passed rdev; the mddev parameter has been unused. Remove it and update the sole caller in exceed_read_errors(). No functional change. Assisted-by: Claude:claude-opus-4-8 [Claude Code] Signed-off-by: Hiroshi Nishida <[email protected]> --- drivers/md/raid1-10.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/md/raid1-10.c b/drivers/md/raid1-10.c index 56a56a4da4f8..edba52eb3116 100644 --- a/drivers/md/raid1-10.c +++ b/drivers/md/raid1-10.c @@ -171,7 +171,7 @@ static inline void raid1_prepare_flush_writes(struct mddev *mddev) * We halve the read error count for every hour that has elapsed * since the last recorded read error. */ -static inline void check_decay_read_errors(struct mddev *mddev, struct md_rdev *rdev) +static inline void check_decay_read_errors(struct md_rdev *rdev) { long cur_time_mon; unsigned long hours_since_last; @@ -206,7 +206,7 @@ static inline bool exceed_read_errors(struct mddev *mddev, struct md_rdev *rdev) int max_read_errors = atomic_read(&mddev->max_corr_read_errors); int read_errors; - check_decay_read_errors(mddev, rdev); + check_decay_read_errors(rdev); read_errors = atomic_inc_return(&rdev->read_errors); if (read_errors > max_read_errors) { pr_notice("md/"RAID_1_10_NAME":%s: %pg: Raid device exceeded read_error threshold [cur %d:max %d]\n", -- 2.43.0