diff options
author | Jan Kara <jack@suse.cz> | 2023-06-16 18:50:49 +0200 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2023-07-30 00:37:24 +0200 |
commit | eb8ab4443aec5ffe923a471b337568a8158cd32b (patch) | |
tree | 4c7c5f88e3be846c0ef91b5b87b16365df423fe4 /fs/ext4/page-io.c | |
parent | ext4: use sb_rdonly() helper for checking read-only flag (diff) | |
download | linux-eb8ab4443aec5ffe923a471b337568a8158cd32b.tar.xz linux-eb8ab4443aec5ffe923a471b337568a8158cd32b.zip |
ext4: make ext4_forced_shutdown() take struct super_block
Currently ext4_forced_shutdown() takes struct ext4_sb_info but most
callers need to get it from struct super_block anyway. So just pass in
struct super_block to save all callers from some boilerplate code. No
functional changes.
Signed-off-by: Jan Kara <jack@suse.cz>
Link: https://lore.kernel.org/r/20230616165109.21695-3-jack@suse.cz
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/page-io.c')
-rw-r--r-- | fs/ext4/page-io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/page-io.c b/fs/ext4/page-io.c index 3621f29ec671..dfdd7e5cf038 100644 --- a/fs/ext4/page-io.c +++ b/fs/ext4/page-io.c @@ -184,7 +184,7 @@ static int ext4_end_io_end(ext4_io_end_t *io_end) io_end->handle = NULL; /* Following call will use up the handle */ ret = ext4_convert_unwritten_io_end_vec(handle, io_end); - if (ret < 0 && !ext4_forced_shutdown(EXT4_SB(inode->i_sb))) { + if (ret < 0 && !ext4_forced_shutdown(inode->i_sb)) { ext4_msg(inode->i_sb, KERN_EMERG, "failed to convert unwritten extents to written " "extents -- potential data loss! " |