{
        struct file     *file, *old_file;
        int             error;
+       bool            partscan;
 
        error = mutex_lock_killable_nested(&loop_ctl_mutex, 1);
        if (error)
        blk_mq_unfreeze_queue(lo->lo_queue);
 
        fput(old_file);
-       if (lo->lo_flags & LO_FLAGS_PARTSCAN)
-               loop_reread_partitions(lo, bdev);
+       partscan = lo->lo_flags & LO_FLAGS_PARTSCAN;
        mutex_unlock(&loop_ctl_mutex);
+       if (partscan)
+               loop_reread_partitions(lo, bdev);
        return 0;
 
 out_putf:
        int             lo_flags = 0;
        int             error;
        loff_t          size;
+       bool            partscan;
 
        /* This is safe, since we have a reference from open(). */
        __module_get(THIS_MODULE);
        lo->lo_state = Lo_bound;
        if (part_shift)
                lo->lo_flags |= LO_FLAGS_PARTSCAN;
-       if (lo->lo_flags & LO_FLAGS_PARTSCAN)
-               loop_reread_partitions(lo, bdev);
+       partscan = lo->lo_flags & LO_FLAGS_PARTSCAN;
 
        /* Grab the block_device to prevent its destruction after we
         * put /dev/loopXX inode. Later in __loop_clr_fd() we bdput(bdev).
         */
        bdgrab(bdev);
        mutex_unlock(&loop_ctl_mutex);
+       if (partscan)
+               loop_reread_partitions(lo, bdev);
        return 0;
 
 out_unlock:
        int err;
        struct loop_func_table *xfer;
        kuid_t uid = current_uid();
+       struct block_device *bdev;
+       bool partscan = false;
 
        err = mutex_lock_killable_nested(&loop_ctl_mutex, 1);
        if (err)
             !(lo->lo_flags & LO_FLAGS_PARTSCAN)) {
                lo->lo_flags |= LO_FLAGS_PARTSCAN;
                lo->lo_disk->flags &= ~GENHD_FL_NO_PART_SCAN;
-               loop_reread_partitions(lo, lo->lo_device);
+               bdev = lo->lo_device;
+               partscan = true;
        }
 out_unlock:
        mutex_unlock(&loop_ctl_mutex);
+       if (partscan)
+               loop_reread_partitions(lo, bdev);
 
        return err;
 }