Commit cb45bbe4 authored by Miklos Szeredi's avatar Miklos Szeredi Committed by Theodore Ts'o

ext4: Add stripe= option to /proc/mounts

Add stripe= option to /proc/mounts for ext4 filesystems.
Signed-off-by: default avatarMiklos Szeredi <mszeredi@suse.cz>
Signed-off-by: default avatarMingming Cao <cmm@us.ibm.com>
parent 3dbd0ede
......@@ -741,6 +741,8 @@ static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
if (test_opt(sb, I_VERSION))
seq_puts(seq, ",i_version");
if (sbi->s_stripe)
seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
/*
* journal mode get enabled in different ways
* So just print the value even if we didn't specify it
......
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