summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorIlya Dryomov <idryomov@redhat.com>2015-02-02 14:54:17 (GMT)
committerIlya Dryomov <idryomov@gmail.com>2015-02-19 10:31:40 (GMT)
commit2a0b61cefcd52ad63ff03aacae6d4113cdf46812 (patch)
tree412a741d32d17b124d0214c1c3dc8d9a97fc4cd9 /fs
parentba988f87f532cd2b8c4740aa8ec49056521ae833 (diff)
downloadlinux-2a0b61cefcd52ad63ff03aacae6d4113cdf46812.tar.xz
ceph: show nocephx_require_signatures and notcp_nodelay options
Signed-off-by: Ilya Dryomov <idryomov@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/ceph/super.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c
index 50f06cd..8f8983f 100644
--- a/fs/ceph/super.c
+++ b/fs/ceph/super.c
@@ -425,6 +425,10 @@ static int ceph_show_options(struct seq_file *m, struct dentry *root)
seq_puts(m, ",noshare");
if (opt->flags & CEPH_OPT_NOCRC)
seq_puts(m, ",nocrc");
+ if (opt->flags & CEPH_OPT_NOMSGAUTH)
+ seq_puts(m, ",nocephx_require_signatures");
+ if ((opt->flags & CEPH_OPT_TCP_NODELAY) == 0)
+ seq_puts(m, ",notcp_nodelay");
if (opt->name)
seq_printf(m, ",name=%s", opt->name);