blk-mq: free hctx->ctxs in queue's release handler
authorMing Lei <tom.leiming@gmail.com>
Thu, 4 Jun 2015 14:25:04 +0000 (22:25 +0800)
committerJens Axboe <axboe@fb.com>
Tue, 9 Jun 2015 21:32:38 +0000 (15:32 -0600)
commitc3b4afca7023b5aa0531912364246e67f79b3010
tree2bf7586a979548fb0fc950e5b84b646f96360ea6
parentd4a4f75cd8f29cd9464a5a32e9224a91571d6649
blk-mq: free hctx->ctxs in queue's release handler

Now blk_cleanup_queue() can be called before calling
del_gendisk()[1], inside which hctx->ctxs is touched
from blk_mq_unregister_hctx(), but the variable has
been freed by blk_cleanup_queue() at that time.

So this patch moves freeing of hctx->ctxs into queue's
release handler for fixing the oops reported by Stefan.

[1], 6cd18e711dd8075 (block: destroy bdi before blockdev is
unregistered)

Reported-by: Stefan Seyfried <stefan.seyfried@googlemail.com>
Cc: NeilBrown <neilb@suse.de>
Cc: Christoph Hellwig <hch@lst.de>
Cc: stable@vger.kernel.org (v4.0)
Signed-off-by: Ming Lei <tom.leiming@gmail.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
block/blk-mq.c