* notcp_nodelay - Enable Nagle's algorithm on client sockets (since 4.0).
+* cephx_sign_messages - Enable message signing (since 4.4, default).
+
+* nocephx_sign_messages - Disable message signing (since 4.4).
+
* mount_timeout=x - A timeout on various steps in `rbd map` and `rbd unmap`
sequences (default is 60 seconds). In particular, since 4.2 this can be used
to ensure that `rbd unmap` eventually times out when there is no network
} else if (!strcmp(this_char, "tcp_nodelay") ||
!strcmp(this_char, "notcp_nodelay")) {
put_map_option("tcp_nodelay", this_char);
+ } else if (!strcmp(this_char, "cephx_sign_messages") ||
+ !strcmp(this_char, "nocephx_sign_messages")) {
+ put_map_option("cephx_sign_messages", this_char);
} else if (!strcmp(this_char, "mount_timeout")) {
if (put_map_option_value("mount_timeout", value_char, map_option_int_cb))
return -EINVAL;