diff mbox series

[v4.14] dm: fix mempool NULL pointer race when completing IO

Message ID alpine.LRH.2.02.2204211403570.761@file01.intranet.prod.int.rdu2.redhat.com
State New
Headers show
Series [v4.14] dm: fix mempool NULL pointer race when completing IO | expand

Commit Message

Mikulas Patocka April 21, 2022, 6:04 p.m. UTC
Hi

This is backport of patches d208b89401e0 ("dm: fix mempool NULL pointer
race when completing IO") and 9f6dc6337610 ("dm: interlock pending dm_io
and dm_wait_for_bios_completion") for the kernel 4.14.

The bugs fixed by these patches can cause random crashing when reloading
dm table, so it is eligible for stable backport.

This patch is different from the upstream patches because the code
diverged significantly.

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>

 drivers/md/dm.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
diff mbox series

Patch

Index: linux-stable/drivers/md/dm.c
===================================================================
--- linux-stable.orig/drivers/md/dm.c	2022-04-19 16:33:39.000000000 +0200
+++ linux-stable/drivers/md/dm.c	2022-04-19 16:33:39.000000000 +0200
@@ -543,6 +543,8 @@  static void end_io_acct(struct dm_io *io
 				    bio->bi_iter.bi_sector, bio_sectors(bio),
 				    true, duration, &io->stats_aux);
 
+	free_io(md, io);
+
 	/*
 	 * After this is decremented the bio must not be touched if it is
 	 * a flush.
@@ -802,7 +804,6 @@  static void dec_pending(struct dm_io *io
 		io_error = io->status;
 		bio = io->bio;
 		end_io_acct(io);
-		free_io(md, io);
 
 		if (io_error == BLK_STS_DM_REQUEUE)
 			return;
@@ -2227,6 +2228,8 @@  static int dm_wait_for_completion(struct
 	}
 	finish_wait(&md->wait, &wait);
 
+	smp_rmb();
+
 	return r;
 }