diff options
author | Guoqing Jiang <guoqing.jiang@linux.dev> | 2022-08-22 10:45:39 +0300 |
---|---|---|
committer | Song Liu <song@kernel.org> | 2022-09-22 10:05:03 +0300 |
commit | 62bca04bb7dd7eaa5c2daf36b1ca9ab8a1fb71a2 (patch) | |
tree | 3ba028cc8d216a5f0b81c1286b9016e975c283b8 /drivers/md/raid10.c | |
parent | 12ba6676b9254bc5a555f1c52f9c0516e86392b7 (diff) | |
download | linux-62bca04bb7dd7eaa5c2daf36b1ca9ab8a1fb71a2.tar.xz |
md/raid10: fix compile warning
With W=1, compiler complains.
drivers/md/raid10.c:1983: warning: bad line:
Signed-off-by: Guoqing Jiang <guoqing.jiang@linux.dev>
Signed-off-by: Song Liu <song@kernel.org>
Diffstat (limited to 'drivers/md/raid10.c')
-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 9117fcdee1be..077c7cdefcd4 100644 --- a/drivers/md/raid10.c +++ b/drivers/md/raid10.c @@ -1980,7 +1980,7 @@ static int enough(struct r10conf *conf, int ignore) * Otherwise, it must be degraded: * - recovery is interrupted. * - &mddev->degraded is bumped. - + * * @rdev is marked as &Faulty excluding case when array is failed and * &mddev->fail_last_dev is off. */ |