diff mbox series

[RFC,v2,7/8] dm-io: Warn on creating multiple atomic write bios for a region

Message ID 20250116170301.474130-8-john.g.garry@oracle.com
State New
Headers show
Series device mapper atomic write support | expand

Commit Message

John Garry Jan. 16, 2025, 5:03 p.m. UTC
A region should just be for a single atomic write, so warn when we are
creating many. This should not occur if request queue limits are properly
configured.

Signed-off-by: John Garry <john.g.garry@oracle.com>
---
 drivers/md/dm-io.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/drivers/md/dm-io.c b/drivers/md/dm-io.c
index d7a8e2f40db3..c37668790577 100644
--- a/drivers/md/dm-io.c
+++ b/drivers/md/dm-io.c
@@ -379,6 +379,7 @@  static void do_region(const blk_opf_t opf, unsigned int region,
 
 		atomic_inc(&io->count);
 		submit_bio(bio);
+		WARN_ON_ONCE(opf & REQ_ATOMIC && remaining);
 	} while (remaining);
 }