return err;
 }
 
-static int __loop_clr_fd(struct loop_device *lo)
+static int __loop_clr_fd(struct loop_device *lo, bool release)
 {
        struct file *filp = NULL;
        gfp_t gfp = lo->old_gfp_mask;
        struct block_device *bdev = lo->lo_device;
        int err = 0;
+       bool partscan = false;
+       int lo_number;
 
        mutex_lock(&loop_ctl_mutex);
        if (WARN_ON_ONCE(lo->lo_state != Lo_rundown)) {
        module_put(THIS_MODULE);
        blk_mq_unfreeze_queue(lo->lo_queue);
 
-       if (lo->lo_flags & LO_FLAGS_PARTSCAN && bdev) {
+       partscan = lo->lo_flags & LO_FLAGS_PARTSCAN && bdev;
+       lo_number = lo->lo_number;
+       lo->lo_flags = 0;
+       if (!part_shift)
+               lo->lo_disk->flags |= GENHD_FL_NO_PART_SCAN;
+       loop_unprepare_queue(lo);
+out_unlock:
+       mutex_unlock(&loop_ctl_mutex);
+       if (partscan) {
                /*
                 * bd_mutex has been held already in release path, so don't
                 * acquire it if this function is called in such case.
                 * must be at least one and it can only become zero when the
                 * current holder is released.
                 */
-               if (!atomic_read(&lo->lo_refcnt))
+               if (release)
                        err = __blkdev_reread_part(bdev);
                else
                        err = blkdev_reread_part(bdev);
                pr_warn("%s: partition scan of loop%d failed (rc=%d)\n",
-                       __func__, lo->lo_number, err);
+                       __func__, lo_number, err);
                /* Device is gone, no point in returning error */
                err = 0;
        }
-       lo->lo_flags = 0;
-       if (!part_shift)
-               lo->lo_disk->flags |= GENHD_FL_NO_PART_SCAN;
-       loop_unprepare_queue(lo);
-out_unlock:
-       mutex_unlock(&loop_ctl_mutex);
        /*
         * Need not hold loop_ctl_mutex to fput backing file.
         * Calling fput holding loop_ctl_mutex triggers a circular
        lo->lo_state = Lo_rundown;
        mutex_unlock(&loop_ctl_mutex);
 
-       return __loop_clr_fd(lo);
+       return __loop_clr_fd(lo, false);
 }
 
 static int
                 * In autoclear mode, stop the loop thread
                 * and remove configuration after last close.
                 */
-               __loop_clr_fd(lo);
+               __loop_clr_fd(lo, true);
                return;
        } else if (lo->lo_state == Lo_bound) {
                /*