diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2017-03-21 23:43:05 +0300 |
---|---|---|
committer | Shaohua Li <shli@fb.com> | 2017-03-23 22:38:46 -0700 |
commit | 0b408baf7f4f3ea94239d021a1f19e60cd8694de (patch) | |
tree | 11c436fab9b5fe9209b1f6faedddde9055ba10d0 /drivers/md/raid5-ppl.c | |
parent | 4ad23a976413aa57fe5ba7a25953dc35ccca5b71 (diff) |
raid5-ppl: silence a misleading warning message
The "need_cache_flush" variable is never set to false. When the
variable is true that means we print a warning message at the end of
the function.
Fixes: 3418d036c81d ("raid5-ppl: Partial Parity Log write logging implementation")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Signed-off-by: Shaohua Li <shli@fb.com>
Diffstat (limited to 'drivers/md/raid5-ppl.c')
-rw-r--r-- | drivers/md/raid5-ppl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/raid5-ppl.c b/drivers/md/raid5-ppl.c index 27bad3e2d7ce..86ea9addb51a 100644 --- a/drivers/md/raid5-ppl.c +++ b/drivers/md/raid5-ppl.c @@ -1070,7 +1070,7 @@ int ppl_init_log(struct r5conf *conf) struct mddev *mddev = conf->mddev; int ret = 0; int i; - bool need_cache_flush; + bool need_cache_flush = false; pr_debug("md/raid:%s: enabling distributed Partial Parity Log\n", mdname(conf->mddev)); |