block: drop dead assignments in loop_init()
authorLukas Bulwahn <lukas.bulwahn@gmail.com>
Sat, 12 Dec 2020 05:13:02 +0000 (06:13 +0100)
committerJens Axboe <axboe@kernel.dk>
Sat, 12 Dec 2020 18:18:56 +0000 (11:18 -0700)
Commit 8410d38c2552 ("loop: use __register_blkdev to allocate devices on
demand") simplified loop_init(); so computing the range of the block region
is not required anymore and can be dropped.

Drop dead assignments in loop_init().

As compilers will detect these unneeded assignments and optimize this,
the resulting object code is identical before and after this change.

No functional change. No change in object code.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/loop.c

index 22e5941..a45248c 100644 (file)
@@ -2316,7 +2316,6 @@ MODULE_ALIAS("devname:loop-control");
 static int __init loop_init(void)
 {
        int i, nr;
-       unsigned long range;
        struct loop_device *lo;
        int err;
 
@@ -2353,13 +2352,10 @@ static int __init loop_init(void)
         * /dev/loop-control interface, or be instantiated by accessing
         * a 'dead' device node.
         */
-       if (max_loop) {
+       if (max_loop)
                nr = max_loop;
-               range = max_loop << part_shift;
-       } else {
+       else
                nr = CONFIG_BLK_DEV_LOOP_MIN_COUNT;
-               range = 1UL << MINORBITS;
-       }
 
        err = misc_register(&loop_misc);
        if (err < 0)