loop: reorder loop_exit
authorChristoph Hellwig <hch@lst.de>
Wed, 23 Jun 2021 14:59:00 +0000 (16:59 +0200)
committerJens Axboe <axboe@kernel.dk>
Wed, 30 Jun 2021 21:34:13 +0000 (15:34 -0600)
Unregister the misc and blockdevice first to prevent further access,
and only then iterate to remove the devices.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Link: https://lore.kernel.org/r/20210623145908.92973-2-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/loop.c

index cc0e8c3..0e96f8c 100644 (file)
@@ -2550,14 +2550,11 @@ static int loop_exit_cb(int id, void *ptr, void *data)
 static void __exit loop_exit(void)
 {
        mutex_lock(&loop_ctl_mutex);
-
-       idr_for_each(&loop_index_idr, &loop_exit_cb, NULL);
-       idr_destroy(&loop_index_idr);
-
        unregister_blkdev(LOOP_MAJOR, "loop");
-
        misc_deregister(&loop_misc);
 
+       idr_for_each(&loop_index_idr, &loop_exit_cb, NULL);
+       idr_destroy(&loop_index_idr);
        mutex_unlock(&loop_ctl_mutex);
 }