ext4: fix remount with 'abort' option
authorLukas Czerner <lczerner@redhat.com>
Tue, 1 Feb 2022 13:13:45 +0000 (14:13 +0100)
committerTheodore Ts'o <tytso@mit.edu>
Sat, 26 Feb 2022 02:27:20 +0000 (21:27 -0500)
commite3952fcce1aad934f1322843b564ff86256444b2
tree917c415301e4e2147e06234dd7f3013f3ffcaf63
parentcfb92440ee71adcc2105b0890bb01ac3cddb8507
ext4: fix remount with 'abort' option

After commit 6e47a3cc68fc ("ext4: get rid of super block and sbi from
handle_mount_ops()") the 'abort' options stopped working. This is
because we're using ctx_set_mount_flags() helper that's expecting an
argument with the appropriate bit set, but instead got
EXT4_MF_FS_ABORTED which is a bit position. ext4_set_mount_flag() is
using set_bit() while ctx_set_mount_flags() was using bitwise OR.

Create a separate helper ctx_set_mount_flag() to handle setting the
mount_flags correctly.

While we're at it clean up the EXT4_SET_CTX macros so that we're only
creating helpers that we actually use to avoid warnings.

Fixes: 6e47a3cc68fc ("ext4: get rid of super block and sbi from handle_mount_ops()")
Signed-off-by: Lukas Czerner <lczerner@redhat.com>
Cc: Ye Bin <yebin10@huawei.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Tested-by: Gabriel Krisman Bertazi <krisman@collabora.com>
Link: https://lore.kernel.org/r/20220201131345.77591-1-lczerner@redhat.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/super.c