diff options
| author | Baokun Li <libaokun1@huawei.com> | 2025-07-03 15:39:02 +0800 |
|---|---|---|
| committer | Theodore Ts'o <tytso@mit.edu> | 2025-08-12 21:28:07 -0400 |
| commit | 6a912e8aa2b2fba2519e93a2eac197d16f137c9a (patch) | |
| tree | 1127ef601d25e244832bc42f05a068c0ebcbb1e1 /fs/ext4 | |
| parent | ext4: do not BUG when INLINE_DATA_FL lacks system.data xattr (diff) | |
| download | linux-6a912e8aa2b2fba2519e93a2eac197d16f137c9a.tar.gz linux-6a912e8aa2b2fba2519e93a2eac197d16f137c9a.zip | |
ext4: show the default enabled i_version option
Display `i_version` in `/proc/fs/ext4/sdx/options`, even though it's
default enabled. This aids users managing multi-version scenarios and
simplifies debugging.
Signed-off-by: Baokun Li <libaokun1@huawei.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Link: https://patch.msgid.link/20250703073903.6952-1-libaokun@huaweicloud.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
| -rw-r--r-- | fs/ext4/super.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index c7d39da7e733..9203518786e4 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -2975,6 +2975,8 @@ static int _ext4_show_options(struct seq_file *seq, struct super_block *sb, SEQ_OPTS_PRINT("min_batch_time=%u", sbi->s_min_batch_time); if (nodefs || sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) SEQ_OPTS_PRINT("max_batch_time=%u", sbi->s_max_batch_time); + if (nodefs && sb->s_flags & SB_I_VERSION) + SEQ_OPTS_PUTS("i_version"); if (nodefs || sbi->s_stripe) SEQ_OPTS_PRINT("stripe=%lu", sbi->s_stripe); if (nodefs || EXT4_MOUNT_DATA_FLAGS & |
