Skip to content

Commit

Permalink
blk-mq: Only unregister hctxs for which registration succeeded
Browse files Browse the repository at this point in the history
Hctx unregistration involves calling kobject_del(). kobject_del()
must not be called if kobject_add() has not been called. Hence in
the error path only unregister hctxs for which registration succeeded.

Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Cc: Omar Sandoval <osandov@fb.com>
Cc: Hannes Reinecke <hare@suse.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
  • Loading branch information
Bart Van Assche authored and axboe committed Apr 26, 2017
1 parent 62d6c94 commit f05d1ba
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions block/blk-mq-sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,16 +323,24 @@ int __blk_mq_register_dev(struct device *dev, struct request_queue *q)
queue_for_each_hw_ctx(q, hctx, i) {
ret = blk_mq_register_hctx(hctx);
if (ret)
break;
goto unreg;
}

if (ret)
__blk_mq_unregister_dev(dev, q);
else
q->mq_sysfs_init_done = true;
q->mq_sysfs_init_done = true;

out:
return ret;

unreg:
while (--i >= 0)
blk_mq_unregister_hctx(q->queue_hw_ctx[i]);

blk_mq_debugfs_unregister_mq(q);

kobject_uevent(&q->mq_kobj, KOBJ_REMOVE);
kobject_del(&q->mq_kobj);
kobject_put(&dev->kobj);
return ret;
}

int blk_mq_register_dev(struct device *dev, struct request_queue *q)
Expand Down

0 comments on commit f05d1ba

Please sign in to comment.