diff options
author | David Sterba <dsterba@suse.com> | 2025-06-09 19:09:26 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2025-07-21 23:56:38 +0200 |
commit | 0fe04bf13279099f923a550f4092d952139823a8 (patch) | |
tree | 79fe33f2ae7233d5095de488e058640935dcd530 /fs/btrfs/disk-io.c | |
parent | 9db18fe3aca3835756946365dcc33c2dea57a27f (diff) |
btrfs: switch RCU helper versions to btrfs_warn()
The RCU protection is now done in the plain helpers, we can remove the
"_in_rcu" and "_rl_in_rcu".
Reviewed-by: Daniel Vacek <neelx@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/disk-io.c')
-rw-r--r-- | fs/btrfs/disk-io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 4cfcd879dc5e..ee3cdd7035cc 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c @@ -3695,7 +3695,7 @@ static void btrfs_end_super_write(struct bio *bio) bio_for_each_folio_all(fi, bio) { if (bio->bi_status) { - btrfs_warn_rl_in_rcu(device->fs_info, + btrfs_warn_rl(device->fs_info, "lost super block write due to IO error on %s (%d)", btrfs_dev_name(device), blk_status_to_errno(bio->bi_status)); |