diff options
author | Chen Ni <[email protected]> | 2024-07-16 10:58:52 +0800 |
---|---|---|
committer | Song Liu <[email protected]> | 2024-08-15 00:06:50 -0700 |
commit | ca958879ade564daa0e0fa82aeeccf3bc7f73edd (patch) | |
tree | d8e275f1330018ccddbf7ccd3ac40a6c81b282c9 | |
parent | a28dc358e28fb0738dd23e401cd7646cb4b0f7f1 (diff) |
md: convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Fixes: 5e5702898e93 ("md/raid10: Handle read errors during recovery better.")
Signed-off-by: Chen Ni <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Song Liu <[email protected]>
-rw-r--r-- | drivers/md/raid10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/raid10.c b/drivers/md/raid10.c index 2a9c4ee982e0..e55e020b5571 100644 --- a/drivers/md/raid10.c +++ b/drivers/md/raid10.c @@ -2465,7 +2465,7 @@ static void fix_recovery_read_error(struct r10bio *r10_bio) s = PAGE_SIZE >> 9; rdev = conf->mirrors[dr].rdev; - addr = r10_bio->devs[0].addr + sect, + addr = r10_bio->devs[0].addr + sect; ok = sync_page_io(rdev, addr, s << 9, |