mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 06:25:52 +02:00
fs: sdcardfs: Add missing option to show_options
unshared_obb was missing from show_options bug: 133257717 Change-Id: I1bc49d1b4098052382a518540e5965e037aa39f1
This commit is contained in:
parent
8f83e6e6b2
commit
e6e368c999
|
|
@ -313,6 +313,8 @@ static int sdcardfs_show_options(struct vfsmount *mnt, struct seq_file *m,
|
||||||
seq_printf(m, ",reserved=%uMB", opts->reserved_mb);
|
seq_printf(m, ",reserved=%uMB", opts->reserved_mb);
|
||||||
if (opts->nocache)
|
if (opts->nocache)
|
||||||
seq_printf(m, ",nocache");
|
seq_printf(m, ",nocache");
|
||||||
|
if (opts->unshared_obb)
|
||||||
|
seq_printf(m, ",unshared_obb");
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user