Skip to content

Commit

Permalink
ceph: show nocephx_require_signatures and notcp_nodelay options
Browse files Browse the repository at this point in the history
Signed-off-by: Ilya Dryomov <idryomov@redhat.com>
  • Loading branch information
Ilya Dryomov authored and Ilya Dryomov committed Feb 19, 2015
1 parent ba988f8 commit 2a0b61c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fs/ceph/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 2a0b61c

Please sign in to comment.