diff options
author | Jan Kara <jack@suse.cz> | 2017-05-31 09:44:33 +0200 |
---|---|---|
committer | Shaohua Li <shli@fb.com> | 2017-05-31 09:25:53 -0700 |
commit | 5a8948f8a32ba56c17b3fb75d318ac98157f3ba5 (patch) | |
tree | 7e44dac2d01cddccb74415a51d3df9a45d913502 /drivers/md/md.c | |
parent | e153903686deac9ea8c499b49516126f1a844fdb (diff) | |
download | linux-5a8948f8a32ba56c17b3fb75d318ac98157f3ba5.tar.gz linux-5a8948f8a32ba56c17b3fb75d318ac98157f3ba5.tar.bz2 linux-5a8948f8a32ba56c17b3fb75d318ac98157f3ba5.zip |
md: Make flush bios explicitely sync
Commit b685d3d65ac7 "block: treat REQ_FUA and REQ_PREFLUSH as
synchronous" removed REQ_SYNC flag from WRITE_{FUA|PREFLUSH|...}
definitions. generic_make_request_checks() however strips REQ_FUA and
REQ_PREFLUSH flags from a bio when the storage doesn't report volatile
write cache and thus write effectively becomes asynchronous which can
lead to performance regressions
Fix the problem by making sure all bios which are synchronous are
properly marked with REQ_SYNC.
CC: linux-raid@vger.kernel.org
CC: Shaohua Li <shli@kernel.org>
Fixes: b685d3d65ac791406e0dfd8779cc9b3707fea5a3
CC: stable@vger.kernel.org
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Shaohua Li <shli@fb.com>
Diffstat (limited to 'drivers/md/md.c')
-rw-r--r-- | drivers/md/md.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index 10367ffe92e3..212a6777ff31 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -765,7 +765,7 @@ void md_super_write(struct mddev *mddev, struct md_rdev *rdev, test_bit(FailFast, &rdev->flags) && !test_bit(LastDev, &rdev->flags)) ff = MD_FAILFAST; - bio->bi_opf = REQ_OP_WRITE | REQ_PREFLUSH | REQ_FUA | ff; + bio->bi_opf = REQ_OP_WRITE | REQ_SYNC | REQ_PREFLUSH | REQ_FUA | ff; atomic_inc(&mddev->pending_writes); submit_bio(bio); |