aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ceph
diff options
context:
space:
mode:
authorChengguang Xu <cgxu519@gmx.com>2018-06-04 16:03:51 +0800
committerIlya Dryomov <idryomov@gmail.com>2018-06-04 20:46:02 +0200
commit3619aa8b74490fe5f803f7e71af02845aede6b5c (patch)
tree0130746449355fe76b5de9236f9ca7a8156b8b4a /fs/ceph
parentceph: strengthen rsize/wsize/readdir_max_bytes validation (diff)
downloadlinux-dev-3619aa8b74490fe5f803f7e71af02845aede6b5c.tar.xz
linux-dev-3619aa8b74490fe5f803f7e71af02845aede6b5c.zip
ceph: show ino32 if the value is different with default
In current ceph_show_options(), there is no item for showing 'ino32', so add showing mount option 'ino32' if the value is different with default. Signed-off-by: Chengguang Xu <cgxu519@gmx.com> Reviewed-by: Ilya Dryomov <idryomov@gmail.com> Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'fs/ceph')
-rw-r--r--fs/ceph/super.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c
index cec1d3343742..95a3b3ac9b6e 100644
--- a/fs/ceph/super.c
+++ b/fs/ceph/super.c
@@ -537,6 +537,8 @@ static int ceph_show_options(struct seq_file *m, struct dentry *root)
seq_puts(m, ",noasyncreaddir");
if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0)
seq_puts(m, ",nodcache");
+ if (fsopt->flags & CEPH_MOUNT_OPT_INO32)
+ seq_puts(m, ",ino32");
if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) {
seq_show_option(m, "fsc", fsopt->fscache_uniq);
}