Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ceph: show nocephx_require_signatures and notcp_nodelay options

Signed-off-by: Ilya Dryomov <idryomov@redhat.com>

authored by

Ilya Dryomov and committed by
Ilya Dryomov
2a0b61ce ba988f87

+4
+4
fs/ceph/super.c
··· 425 425 seq_puts(m, ",noshare"); 426 426 if (opt->flags & CEPH_OPT_NOCRC) 427 427 seq_puts(m, ",nocrc"); 428 + if (opt->flags & CEPH_OPT_NOMSGAUTH) 429 + seq_puts(m, ",nocephx_require_signatures"); 430 + if ((opt->flags & CEPH_OPT_TCP_NODELAY) == 0) 431 + seq_puts(m, ",notcp_nodelay"); 428 432 429 433 if (opt->name) 430 434 seq_printf(m, ",name=%s", opt->name);