OSDN Git Service

loop: rewrite loop_exit using idr_for_each_entry
authorChristoph Hellwig <hch@lst.de>
Wed, 23 Jun 2021 14:59:08 +0000 (16:59 +0200)
committerJens Axboe <axboe@kernel.dk>
Wed, 30 Jun 2021 21:34:13 +0000 (15:34 -0600)
Use idr_for_each_entry to simplify removing all 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-10-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/loop.c

index ff70146..39c05cf 100644 (file)
@@ -2518,21 +2518,17 @@ err_out:
        return err;
 }
 
-static int loop_exit_cb(int id, void *ptr, void *data)
-{
-       struct loop_device *lo = ptr;
-
-       loop_remove(lo);
-       return 0;
-}
-
 static void __exit loop_exit(void)
 {
+       struct loop_device *lo;
+       int id;
+
        unregister_blkdev(LOOP_MAJOR, "loop");
        misc_deregister(&loop_misc);
 
        mutex_lock(&loop_ctl_mutex);
-       idr_for_each(&loop_index_idr, &loop_exit_cb, NULL);
+       idr_for_each_entry(&loop_index_idr, lo, id)
+               loop_remove(lo);
        mutex_unlock(&loop_ctl_mutex);
 
        idr_destroy(&loop_index_idr);