From: Bart Van Assche Date: Wed, 31 Aug 2016 22:17:49 +0000 (-0700) Subject: dm: mark request_queue dead before destroying the DM device X-Git-Tag: v3.12.67~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2210e6dc67d9dfc1b9811b8f0a82548a208e96d6;p=thirdparty%2Fkernel%2Fstable.git dm: mark request_queue dead before destroying the DM device commit 3b785fbcf81c3533772c52b717f77293099498d3 upstream. This avoids that new requests are queued while __dm_destroy() is in progress. [js] use md->queue instead of non-present helper Signed-off-by: Bart Van Assche Signed-off-by: Mike Snitzer Signed-off-by: Jiri Slaby --- diff --git a/drivers/md/dm.c b/drivers/md/dm.c index 78ab0a131cf1b..8c82835a47490 100644 --- a/drivers/md/dm.c +++ b/drivers/md/dm.c @@ -2428,6 +2428,7 @@ EXPORT_SYMBOL_GPL(dm_device_name); static void __dm_destroy(struct mapped_device *md, bool wait) { + struct request_queue *q = md->queue; struct dm_table *map; int srcu_idx; @@ -2438,6 +2439,10 @@ static void __dm_destroy(struct mapped_device *md, bool wait) set_bit(DMF_FREEING, &md->flags); spin_unlock(&_minor_lock); + spin_lock_irq(q->queue_lock); + queue_flag_set(QUEUE_FLAG_DYING, q); + spin_unlock_irq(q->queue_lock); + /* * Take suspend_lock so that presuspend and postsuspend methods * do not race with internal suspend.