From e6e368c99975511451b447bfbb59cf708de6a8ec Mon Sep 17 00:00:00 2001 From: Daniel Rosenberg Date: Tue, 21 May 2019 14:56:39 -0700 Subject: [PATCH] fs: sdcardfs: Add missing option to show_options unshared_obb was missing from show_options bug: 133257717 Change-Id: I1bc49d1b4098052382a518540e5965e037aa39f1 --- fs/sdcardfs/super.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fs/sdcardfs/super.c b/fs/sdcardfs/super.c index 5e0c39a17251..1240ef2f9d74 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; };