]> git.itanic.dy.fi Git - linux-stable/commitdiff
block: move bdev_mark_dead out of disk_check_media_change
authorChristoph Hellwig <hch@lst.de>
Tue, 17 Oct 2023 18:48:21 +0000 (20:48 +0200)
committerChristian Brauner <brauner@kernel.org>
Sat, 28 Oct 2023 11:29:23 +0000 (13:29 +0200)
disk_check_media_change is mostly called from ->open where it makes
little sense to mark the file system on the device as dead, as we
are just opening it.  So instead of calling bdev_mark_dead from
disk_check_media_change move it into the few callers that are not
in an open instance.  This avoid calling into bdev_mark_dead and
thus taking s_umount with open_mutex held.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20231017184823.1383356-4-hch@lst.de
Reviewed-by: Ming Lei <ming.lei@redhat.com>
Reviewed-by: Christian Brauner <brauner@kernel.org>
Reviewed-by: Jan Kara <jack@suse.cz>
Reviewed-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Christian Brauner <brauner@kernel.org>
block/bdev.c
block/disk-events.c
drivers/block/ataflop.c
drivers/block/floppy.c

index 9838085102b3c5a0c7a372d585c6ad8d2e4ef979..2018d250e1310913952b272481e299f188ea34f3 100644 (file)
@@ -1019,14 +1019,13 @@ void bdev_mark_dead(struct block_device *bdev, bool surprise)
 
        invalidate_bdev(bdev);
 }
-#ifdef CONFIG_DASD_MODULE
 /*
- * Drivers should not use this directly, but the DASD driver has historically
- * had a shutdown to offline mode that doesn't actually remove the gendisk
- * that otherwise looks a lot like a safe device removal.
+ * New drivers should not use this directly.  There are some drivers however
+ * that needs this for historical reasons. For example, the DASD driver has
+ * historically had a shutdown to offline mode that doesn't actually remove the
+ * gendisk that otherwise looks a lot like a safe device removal.
  */
 EXPORT_SYMBOL_GPL(bdev_mark_dead);
-#endif
 
 void sync_bdevs(bool wait)
 {
index 13c3372c465a395d32035a6cf32a93f2a886a6a7..2f697224386aa87f4e6fa2215c05cb4c1356ab97 100644 (file)
@@ -266,11 +266,8 @@ static unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
  * disk_check_media_change - check if a removable media has been changed
  * @disk: gendisk to check
  *
- * Check whether a removable media has been changed, and attempt to free all
- * dentries and inodes and invalidates all block device page cache entries in
- * that case.
- *
- * Returns %true if the media has changed, or %false if not.
+ * Returns %true and marks the disk for a partition rescan whether a removable
+ * media has been changed, and %false if the media did not change.
  */
 bool disk_check_media_change(struct gendisk *disk)
 {
@@ -278,12 +275,11 @@ bool disk_check_media_change(struct gendisk *disk)
 
        events = disk_clear_events(disk, DISK_EVENT_MEDIA_CHANGE |
                                   DISK_EVENT_EJECT_REQUEST);
-       if (!(events & DISK_EVENT_MEDIA_CHANGE))
-               return false;
-
-       bdev_mark_dead(disk->part0, true);
-       set_bit(GD_NEED_PART_SCAN, &disk->state);
-       return true;
+       if (events & DISK_EVENT_MEDIA_CHANGE) {
+               set_bit(GD_NEED_PART_SCAN, &disk->state);
+               return true;
+       }
+       return false;
 }
 EXPORT_SYMBOL(disk_check_media_change);
 
index cd738cab725f39cb578661d58ba62a168eed084a..50949207798d2a27a3fb6c86e94c5afd490ff5d6 100644 (file)
@@ -1760,8 +1760,10 @@ static int fd_locked_ioctl(struct block_device *bdev, blk_mode_t mode,
                /* invalidate the buffer track to force a reread */
                BufferDrive = -1;
                set_bit(drive, &fake_change);
-               if (disk_check_media_change(disk))
+               if (disk_check_media_change(disk)) {
+                       bdev_mark_dead(disk->part0, true);
                        floppy_revalidate(disk);
+               }
                return 0;
        default:
                return -EINVAL;
index ea4eb88a2e45f4fb86a47e5aa77c5d3fdff63b54..11114a5d9e5c4682f7ffb2e8d0b3c9a526eb0cdc 100644 (file)
@@ -3215,8 +3215,10 @@ static int invalidate_drive(struct gendisk *disk)
        /* invalidate the buffer track to force a reread */
        set_bit((long)disk->private_data, &fake_change);
        process_fd_request();
-       if (disk_check_media_change(disk))
+       if (disk_check_media_change(disk)) {
+               bdev_mark_dead(disk->part0, true);
                floppy_revalidate(disk);
+       }
        return 0;
 }