Commit 127a5093 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Christian Brauner

block: drop the "busy inodes on changed media" log message

This message isn't exactly helpful, and file systems already print way more
useful messages when shut down while active.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarJosef Bacik <josef@toxicpanda.com>
Message-Id: <20230811100828.1897174-13-hch@lst.de>
Signed-off-by: default avatarChristian Brauner <brauner@kernel.org>
parent 2527fd38
...@@ -281,9 +281,7 @@ bool disk_check_media_change(struct gendisk *disk) ...@@ -281,9 +281,7 @@ bool disk_check_media_change(struct gendisk *disk)
if (!(events & DISK_EVENT_MEDIA_CHANGE)) if (!(events & DISK_EVENT_MEDIA_CHANGE))
return false; return false;
if (__invalidate_device(disk->part0, true)) __invalidate_device(disk->part0, true);
pr_warn("VFS: busy inodes on changed media %s\n",
disk->disk_name);
set_bit(GD_NEED_PART_SCAN, &disk->state); set_bit(GD_NEED_PART_SCAN, &disk->state);
return true; return true;
} }
...@@ -302,9 +300,7 @@ void disk_force_media_change(struct gendisk *disk) ...@@ -302,9 +300,7 @@ void disk_force_media_change(struct gendisk *disk)
{ {
disk_event_uevent(disk, DISK_EVENT_MEDIA_CHANGE); disk_event_uevent(disk, DISK_EVENT_MEDIA_CHANGE);
inc_diskseq(disk); inc_diskseq(disk);
if (__invalidate_device(disk->part0, true)) __invalidate_device(disk->part0, true);
pr_warn("VFS: busy inodes on changed media %s\n",
disk->disk_name);
set_bit(GD_NEED_PART_SCAN, &disk->state); set_bit(GD_NEED_PART_SCAN, &disk->state);
} }
EXPORT_SYMBOL_GPL(disk_force_media_change); EXPORT_SYMBOL_GPL(disk_force_media_change);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment