浏览代码

dm: make flush bios explicitly 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.

Fixes: b685d3d65ac7 ("block: treat REQ_FUA and REQ_PREFLUSH as synchronous")
Cc: stable@vger.kernel.org
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Jan Kara 8 年之前
父节点
当前提交
ff0361b34a
共有 5 个文件被更改,包括 7 次插入5 次删除
  1. 1 1
      drivers/md/dm-bufio.c
  2. 2 1
      drivers/md/dm-integrity.c
  3. 1 1
      drivers/md/dm-raid1.c
  4. 2 1
      drivers/md/dm-snap-persistent.c
  5. 1 1
      drivers/md/dm.c

+ 1 - 1
drivers/md/dm-bufio.c

@@ -1334,7 +1334,7 @@ int dm_bufio_issue_flush(struct dm_bufio_client *c)
 {
 {
 	struct dm_io_request io_req = {
 	struct dm_io_request io_req = {
 		.bi_op = REQ_OP_WRITE,
 		.bi_op = REQ_OP_WRITE,
-		.bi_op_flags = REQ_PREFLUSH,
+		.bi_op_flags = REQ_PREFLUSH | REQ_SYNC,
 		.mem.type = DM_IO_KMEM,
 		.mem.type = DM_IO_KMEM,
 		.mem.ptr.addr = NULL,
 		.mem.ptr.addr = NULL,
 		.client = c->dm_io,
 		.client = c->dm_io,

+ 2 - 1
drivers/md/dm-integrity.c

@@ -783,7 +783,8 @@ static void write_journal(struct dm_integrity_c *ic, unsigned commit_start, unsi
 			for (i = 0; i < commit_sections; i++)
 			for (i = 0; i < commit_sections; i++)
 				rw_section_mac(ic, commit_start + i, true);
 				rw_section_mac(ic, commit_start + i, true);
 		}
 		}
-		rw_journal(ic, REQ_OP_WRITE, REQ_FUA, commit_start, commit_sections, &io_comp);
+		rw_journal(ic, REQ_OP_WRITE, REQ_FUA | REQ_SYNC, commit_start,
+			   commit_sections, &io_comp);
 	} else {
 	} else {
 		unsigned to_end;
 		unsigned to_end;
 		io_comp.in_flight = (atomic_t)ATOMIC_INIT(2);
 		io_comp.in_flight = (atomic_t)ATOMIC_INIT(2);

+ 1 - 1
drivers/md/dm-raid1.c

@@ -260,7 +260,7 @@ static int mirror_flush(struct dm_target *ti)
 	struct mirror *m;
 	struct mirror *m;
 	struct dm_io_request io_req = {
 	struct dm_io_request io_req = {
 		.bi_op = REQ_OP_WRITE,
 		.bi_op = REQ_OP_WRITE,
-		.bi_op_flags = REQ_PREFLUSH,
+		.bi_op_flags = REQ_PREFLUSH | REQ_SYNC,
 		.mem.type = DM_IO_KMEM,
 		.mem.type = DM_IO_KMEM,
 		.mem.ptr.addr = NULL,
 		.mem.ptr.addr = NULL,
 		.client = ms->io_client,
 		.client = ms->io_client,

+ 2 - 1
drivers/md/dm-snap-persistent.c

@@ -741,7 +741,8 @@ static void persistent_commit_exception(struct dm_exception_store *store,
 	/*
 	/*
 	 * Commit exceptions to disk.
 	 * Commit exceptions to disk.
 	 */
 	 */
-	if (ps->valid && area_io(ps, REQ_OP_WRITE, REQ_PREFLUSH | REQ_FUA))
+	if (ps->valid && area_io(ps, REQ_OP_WRITE,
+				 REQ_PREFLUSH | REQ_FUA | REQ_SYNC))
 		ps->valid = 0;
 		ps->valid = 0;
 
 
 	/*
 	/*

+ 1 - 1
drivers/md/dm.c

@@ -1657,7 +1657,7 @@ static struct mapped_device *alloc_dev(int minor)
 
 
 	bio_init(&md->flush_bio, NULL, 0);
 	bio_init(&md->flush_bio, NULL, 0);
 	md->flush_bio.bi_bdev = md->bdev;
 	md->flush_bio.bi_bdev = md->bdev;
-	md->flush_bio.bi_opf = REQ_OP_WRITE | REQ_PREFLUSH;
+	md->flush_bio.bi_opf = REQ_OP_WRITE | REQ_PREFLUSH | REQ_SYNC;
 
 
 	dm_stats_init(&md->stats);
 	dm_stats_init(&md->stats);