diff options
| author | Daniel Rosenberg <drosen@google.com> | 2019-05-21 14:56:39 -0700 |
|---|---|---|
| committer | Daniel Rosenberg <drosen@google.com> | 2019-05-21 22:11:31 +0000 |
| commit | 6dc3fb0ba85467a62371be618ab6f7987b165487 (patch) | |
| tree | 33c2777cc138ffff64088d1ebac938c0da437206 | |
| parent | 71cb827c0249e87c62139bd4d5897cf59f51cb55 (diff) | |
fs: sdcardfs: Add missing option to show_options
unshared_obb was missing from show_options
bug: 133257717
Change-Id: I1bc49d1b4098052382a518540e5965e037aa39f1
| -rw-r--r-- | fs/sdcardfs/super.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/sdcardfs/super.c b/fs/sdcardfs/super.c index 140696ed3ed3..bd2eb0257020 100644 --- a/fs/sdcardfs/super.c +++ b/fs/sdcardfs/super.c @@ -313,6 +313,8 @@ static int sdcardfs_show_options(struct vfsmount *mnt, struct seq_file *m, seq_printf(m, ",reserved=%uMB", opts->reserved_mb); if (opts->nocache) seq_printf(m, ",nocache"); + if (opts->unshared_obb) + seq_printf(m, ",unshared_obb"); return 0; }; |
