]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
dm: free io_barrier after blk_cleanup_queue call
authorTahsin Erdogan <tahsin@google.com>
Mon, 10 Oct 2016 12:35:19 +0000 (05:35 -0700)
committerMike Snitzer <snitzer@redhat.com>
Tue, 18 Oct 2016 16:02:08 +0000 (12:02 -0400)
dm_old_request_fn() has paths that access md->io_barrier.  The party
destroying io_barrier should ensure that no future execution of
dm_old_request_fn() is possible.  Move io_barrier destruction to below
blk_cleanup_queue() to ensure this and avoid a NULL pointer crash during
request-based DM device shutdown.

Cc: stable@vger.kernel.org # 4.3+
Signed-off-by: Tahsin Erdogan <tahsin@google.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
drivers/md/dm.c

index be35258324c114b1d2a5042e9404bc6a108e1d4d..ec513ee864f26bcc39818d9c5e523fc3fc6fd67b 100644 (file)
@@ -1423,8 +1423,6 @@ static void cleanup_mapped_device(struct mapped_device *md)
        if (md->bs)
                bioset_free(md->bs);
 
-       cleanup_srcu_struct(&md->io_barrier);
-
        if (md->disk) {
                spin_lock(&_minor_lock);
                md->disk->private_data = NULL;
@@ -1436,6 +1434,8 @@ static void cleanup_mapped_device(struct mapped_device *md)
        if (md->queue)
                blk_cleanup_queue(md->queue);
 
+       cleanup_srcu_struct(&md->io_barrier);
+
        if (md->bdev) {
                bdput(md->bdev);
                md->bdev = NULL;