diff options
author | Ilya Dryomov <idryomov@redhat.com> | 2015-02-02 17:54:17 +0300 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2015-02-19 13:31:40 +0300 |
commit | 2a0b61cefcd52ad63ff03aacae6d4113cdf46812 (patch) | |
tree | 412a741d32d17b124d0214c1c3dc8d9a97fc4cd9 /fs/ceph | |
parent | ba988f87f532cd2b8c4740aa8ec49056521ae833 (diff) | |
download | linux-2a0b61cefcd52ad63ff03aacae6d4113cdf46812.tar.gz linux-2a0b61cefcd52ad63ff03aacae6d4113cdf46812.tar.xz |
ceph: show nocephx_require_signatures and notcp_nodelay options
Signed-off-by: Ilya Dryomov <idryomov@redhat.com>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/super.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c index 50f06cddc94b..8f8983f38b82 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); |