From patchwork Mon Jan 28 13:56:24 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yishai Hadas X-Patchwork-Id: 10783707 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 027F713BF for ; Mon, 28 Jan 2019 13:57:01 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E6B9A2ADA3 for ; Mon, 28 Jan 2019 13:57:00 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id DB3322ADAB; Mon, 28 Jan 2019 13:57:00 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7EC212ADB5 for ; Mon, 28 Jan 2019 13:57:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726762AbfA1N5A (ORCPT ); Mon, 28 Jan 2019 08:57:00 -0500 Received: from mail-il-dmz.mellanox.com ([193.47.165.129]:43501 "EHLO mellanox.co.il" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726689AbfA1N47 (ORCPT ); Mon, 28 Jan 2019 08:56:59 -0500 Received: from Internal Mail-Server by MTLPINE1 (envelope-from yishaih@mellanox.com) with ESMTPS (AES256-SHA encrypted); 28 Jan 2019 15:56:52 +0200 Received: from vnc17.mtl.labs.mlnx (vnc17.mtl.labs.mlnx [10.7.2.17]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id x0SDup9R028043; Mon, 28 Jan 2019 15:56:52 +0200 Received: from vnc17.mtl.labs.mlnx (vnc17.mtl.labs.mlnx [127.0.0.1]) by vnc17.mtl.labs.mlnx (8.13.8/8.13.8) with ESMTP id x0SDupv7018424; Mon, 28 Jan 2019 15:56:51 +0200 Received: (from yishaih@localhost) by vnc17.mtl.labs.mlnx (8.13.8/8.13.8/Submit) id x0SDup14018423; Mon, 28 Jan 2019 15:56:51 +0200 From: Yishai Hadas To: linux-rdma@vger.kernel.org Cc: yishaih@mellanox.com, danitg@mellanox.com, monis@mellanox.com, jgg@mellanox.com, majd@mellanox.com Subject: [PATCH rdma-core 1/4] Update kernel headers Date: Mon, 28 Jan 2019 15:56:24 +0200 Message-Id: <1548683787-18270-2-git-send-email-yishaih@mellanox.com> X-Mailer: git-send-email 1.8.2.3 In-Reply-To: <1548683787-18270-1-git-send-email-yishaih@mellanox.com> References: <1548683787-18270-1-git-send-email-yishaih@mellanox.com> Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP To commit 352156b34a8c ("IB/cma: Define option to set ack timeout and pack tos_set") Signed-off-by: Yishai Hadas --- kernel-headers/rdma/rdma_netlink.h | 17 ++--------------- kernel-headers/rdma/rdma_user_cm.h | 4 ++++ 2 files changed, 6 insertions(+), 15 deletions(-) diff --git a/kernel-headers/rdma/rdma_netlink.h b/kernel-headers/rdma/rdma_netlink.h index 2e18b77..69f5fe8 100644 --- a/kernel-headers/rdma/rdma_netlink.h +++ b/kernel-headers/rdma/rdma_netlink.h @@ -5,8 +5,7 @@ #include enum { - RDMA_NL_RDMA_CM = 1, - RDMA_NL_IWCM, + RDMA_NL_IWCM = 2, RDMA_NL_RSVD, RDMA_NL_LS, /* RDMA Local Services */ RDMA_NL_NLDEV, /* RDMA device interface */ @@ -14,8 +13,7 @@ enum { }; enum { - RDMA_NL_GROUP_CM = 1, - RDMA_NL_GROUP_IWPM, + RDMA_NL_GROUP_IWPM = 2, RDMA_NL_GROUP_LS, RDMA_NL_NUM_GROUPS }; @@ -24,17 +22,6 @@ enum { #define RDMA_NL_GET_OP(type) (type & ((1 << 10) - 1)) #define RDMA_NL_GET_TYPE(client, op) ((client << 10) + op) -enum { - RDMA_NL_RDMA_CM_ID_STATS = 0, - RDMA_NL_RDMA_CM_NUM_OPS -}; - -enum { - RDMA_NL_RDMA_CM_ATTR_SRC_ADDR = 1, - RDMA_NL_RDMA_CM_ATTR_DST_ADDR, - RDMA_NL_RDMA_CM_NUM_ATTR, -}; - /* iwarp port mapper op-codes */ enum { RDMA_NL_IWPM_REG_PID = 0, diff --git a/kernel-headers/rdma/rdma_user_cm.h b/kernel-headers/rdma/rdma_user_cm.h index 0d1e78e..e42940a 100644 --- a/kernel-headers/rdma/rdma_user_cm.h +++ b/kernel-headers/rdma/rdma_user_cm.h @@ -300,6 +300,10 @@ enum { RDMA_OPTION_ID_TOS = 0, RDMA_OPTION_ID_REUSEADDR = 1, RDMA_OPTION_ID_AFONLY = 2, + RDMA_OPTION_ID_ACK_TIMEOUT = 3 +}; + +enum { RDMA_OPTION_IB_PATH = 1 }; From patchwork Mon Jan 28 13:56:25 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yishai Hadas X-Patchwork-Id: 10783713 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 4F2D81390 for ; Mon, 28 Jan 2019 13:57:02 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3CCFE2AD35 for ; Mon, 28 Jan 2019 13:57:02 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 2EF412AD9C; Mon, 28 Jan 2019 13:57:02 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D2A342ADA3 for ; Mon, 28 Jan 2019 13:57:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726749AbfA1N47 (ORCPT ); Mon, 28 Jan 2019 08:56:59 -0500 Received: from mail-il-dmz.mellanox.com ([193.47.165.129]:43498 "EHLO mellanox.co.il" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726682AbfA1N47 (ORCPT ); Mon, 28 Jan 2019 08:56:59 -0500 Received: from Internal Mail-Server by MTLPINE1 (envelope-from yishaih@mellanox.com) with ESMTPS (AES256-SHA encrypted); 28 Jan 2019 15:56:52 +0200 Received: from vnc17.mtl.labs.mlnx (vnc17.mtl.labs.mlnx [10.7.2.17]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id x0SDuqeM028046; Mon, 28 Jan 2019 15:56:52 +0200 Received: from vnc17.mtl.labs.mlnx (vnc17.mtl.labs.mlnx [127.0.0.1]) by vnc17.mtl.labs.mlnx (8.13.8/8.13.8) with ESMTP id x0SDuqL8018428; Mon, 28 Jan 2019 15:56:52 +0200 Received: (from yishaih@localhost) by vnc17.mtl.labs.mlnx (8.13.8/8.13.8/Submit) id x0SDuqT2018427; Mon, 28 Jan 2019 15:56:52 +0200 From: Yishai Hadas To: linux-rdma@vger.kernel.org Cc: yishaih@mellanox.com, danitg@mellanox.com, monis@mellanox.com, jgg@mellanox.com, majd@mellanox.com Subject: [PATCH rdma-core 2/4] rdmacm: Expand on optname in rdma_set_option man page Date: Mon, 28 Jan 2019 15:56:25 +0200 Message-Id: <1548683787-18270-3-git-send-email-yishaih@mellanox.com> X-Mailer: git-send-email 1.8.2.3 In-Reply-To: <1548683787-18270-1-git-send-email-yishaih@mellanox.com> References: <1548683787-18270-1-git-send-email-yishaih@mellanox.com> Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Danit Goldberg Elaborate on each option in rdma_set_option man page. Signed-off-by: Danit Goldberg Reviewed-by: Moni Shoua Signed-off-by: Yishai Hadas --- librdmacm/man/rdma_set_option.3 | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/librdmacm/man/rdma_set_option.3 b/librdmacm/man/rdma_set_option.3 index 93a6047..24b13e4 100644 --- a/librdmacm/man/rdma_set_option.3 +++ b/librdmacm/man/rdma_set_option.3 @@ -25,6 +25,19 @@ The size of the %optval buffer. .SH "DESCRIPTION" Sets communication options for an rdma_cm_id. This call is used to override the default system settings. +.IP "optname can be one of" 12 +.IP "RDMA_OPTION_ID_TOS" 12 +Specify the quality of service provided by a connection. +The expected optlen is size of uint8_t. +.IP "RDMA_OPTION_ID_REUSEADDR" 12 +Bound the rdma_cm_id to a reuseable address. This will allow other users to bind to that same address. +The expected optlen is size of int. +.IP "RDMA_OPTION_ID_AFONLY" 12 +Set IPV6_V6ONLY socket. +The expected optlen is size of int. +.IP "RDMA_OPTION_IB_PATH" 12 +Set IB path record data. +The expected optlen is size of struct ibv_path_data[]. .SH "RETURN VALUE" Returns 0 on success, or -1 on error. If an error occurs, errno will be set to indicate the failure reason. From patchwork Mon Jan 28 13:56:26 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yishai Hadas X-Patchwork-Id: 10783711 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id D6F9713BF for ; Mon, 28 Jan 2019 13:57:01 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C64502AD2A for ; Mon, 28 Jan 2019 13:57:01 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id BA9EE2AD35; Mon, 28 Jan 2019 13:57:01 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 607232AD9C for ; Mon, 28 Jan 2019 13:57:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726750AbfA1N5A (ORCPT ); Mon, 28 Jan 2019 08:57:00 -0500 Received: from mail-il-dmz.mellanox.com ([193.47.165.129]:43499 "EHLO mellanox.co.il" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726714AbfA1N47 (ORCPT ); Mon, 28 Jan 2019 08:56:59 -0500 Received: from Internal Mail-Server by MTLPINE1 (envelope-from yishaih@mellanox.com) with ESMTPS (AES256-SHA encrypted); 28 Jan 2019 15:56:52 +0200 Received: from vnc17.mtl.labs.mlnx (vnc17.mtl.labs.mlnx [10.7.2.17]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id x0SDuqea028049; Mon, 28 Jan 2019 15:56:52 +0200 Received: from vnc17.mtl.labs.mlnx (vnc17.mtl.labs.mlnx [127.0.0.1]) by vnc17.mtl.labs.mlnx (8.13.8/8.13.8) with ESMTP id x0SDuqjd018432; Mon, 28 Jan 2019 15:56:52 +0200 Received: (from yishaih@localhost) by vnc17.mtl.labs.mlnx (8.13.8/8.13.8/Submit) id x0SDuqbp018431; Mon, 28 Jan 2019 15:56:52 +0200 From: Yishai Hadas To: linux-rdma@vger.kernel.org Cc: yishaih@mellanox.com, danitg@mellanox.com, monis@mellanox.com, jgg@mellanox.com, majd@mellanox.com Subject: [PATCH rdma-core 3/4] rdmacm: Add option to set ACK timeout Date: Mon, 28 Jan 2019 15:56:26 +0200 Message-Id: <1548683787-18270-4-git-send-email-yishaih@mellanox.com> X-Mailer: git-send-email 1.8.2.3 In-Reply-To: <1548683787-18270-1-git-send-email-yishaih@mellanox.com> References: <1548683787-18270-1-git-send-email-yishaih@mellanox.com> Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Danit Goldberg Add new option to rdma_set_option that allows applications to override the RDMA-CM's QP ACK timeout value. Signed-off-by: Danit Goldberg Reviewed-by: Moni Shoua Signed-off-by: Yishai Hadas --- librdmacm/man/rdma_set_option.3 | 3 +++ librdmacm/rdma_cma.h | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/librdmacm/man/rdma_set_option.3 b/librdmacm/man/rdma_set_option.3 index 24b13e4..c6660c6 100644 --- a/librdmacm/man/rdma_set_option.3 +++ b/librdmacm/man/rdma_set_option.3 @@ -38,6 +38,9 @@ The expected optlen is size of int. .IP "RDMA_OPTION_IB_PATH" 12 Set IB path record data. The expected optlen is size of struct ibv_path_data[]. +.IP "RDMA_OPTION_ID_ACK_TIMEOUT" 12 +Set QP ACK timeout. +The value calculated according to the formula 4.096 * 2^(ack_timeout) usec. .SH "RETURN VALUE" Returns 0 on success, or -1 on error. If an error occurs, errno will be set to indicate the failure reason. diff --git a/librdmacm/rdma_cma.h b/librdmacm/rdma_cma.h index 2096a81..6f3f074 100644 --- a/librdmacm/rdma_cma.h +++ b/librdmacm/rdma_cma.h @@ -691,6 +691,10 @@ enum { RDMA_OPTION_ID_TOS = 0, /* uint8_t: RFC 2474 */ RDMA_OPTION_ID_REUSEADDR = 1, /* int: ~SO_REUSEADDR */ RDMA_OPTION_ID_AFONLY = 2, /* int: ~IPV6_V6ONLY */ + RDMA_OPTION_ID_ACK_TIMEOUT = 3 /* uint8_t */ +}; + +enum { RDMA_OPTION_IB_PATH = 1 /* struct ibv_path_data[] */ }; From patchwork Mon Jan 28 13:56:27 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yishai Hadas X-Patchwork-Id: 10783709 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 3628C1390 for ; Mon, 28 Jan 2019 13:57:01 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 24BC22ADA3 for ; Mon, 28 Jan 2019 13:57:01 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 18F9C2ADAB; Mon, 28 Jan 2019 13:57:01 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A2CC82ADB9 for ; Mon, 28 Jan 2019 13:57:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726772AbfA1N5A (ORCPT ); Mon, 28 Jan 2019 08:57:00 -0500 Received: from mail-il-dmz.mellanox.com ([193.47.165.129]:43508 "EHLO mellanox.co.il" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726695AbfA1N47 (ORCPT ); Mon, 28 Jan 2019 08:56:59 -0500 Received: from Internal Mail-Server by MTLPINE1 (envelope-from yishaih@mellanox.com) with ESMTPS (AES256-SHA encrypted); 28 Jan 2019 15:56:52 +0200 Received: from vnc17.mtl.labs.mlnx (vnc17.mtl.labs.mlnx [10.7.2.17]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id x0SDuqg3028052; Mon, 28 Jan 2019 15:56:52 +0200 Received: from vnc17.mtl.labs.mlnx (vnc17.mtl.labs.mlnx [127.0.0.1]) by vnc17.mtl.labs.mlnx (8.13.8/8.13.8) with ESMTP id x0SDuqV0018436; Mon, 28 Jan 2019 15:56:52 +0200 Received: (from yishaih@localhost) by vnc17.mtl.labs.mlnx (8.13.8/8.13.8/Submit) id x0SDuqhZ018435; Mon, 28 Jan 2019 15:56:52 +0200 From: Yishai Hadas To: linux-rdma@vger.kernel.org Cc: yishaih@mellanox.com, danitg@mellanox.com, monis@mellanox.com, jgg@mellanox.com, majd@mellanox.com Subject: [PATCH rdma-core 4/4] ucmatose: Add option to set ACK timeout Date: Mon, 28 Jan 2019 15:56:27 +0200 Message-Id: <1548683787-18270-5-git-send-email-yishaih@mellanox.com> X-Mailer: git-send-email 1.8.2.3 In-Reply-To: <1548683787-18270-1-git-send-email-yishaih@mellanox.com> References: <1548683787-18270-1-git-send-email-yishaih@mellanox.com> Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Danit Goldberg The option is available via "-a" flag. Signed-off-by: Danit Goldberg Reviewed-by: Moni Shoua Signed-off-by: Yishai Hadas --- librdmacm/examples/cmatose.c | 24 ++++++++++++++++++++++-- librdmacm/man/ucmatose.1 | 8 ++++++-- 2 files changed, 28 insertions(+), 4 deletions(-) diff --git a/librdmacm/examples/cmatose.c b/librdmacm/examples/cmatose.c index 457e507..1f7f315 100644 --- a/librdmacm/examples/cmatose.c +++ b/librdmacm/examples/cmatose.c @@ -80,6 +80,8 @@ static uint8_t migrate = 0; static char *dst_addr; static char *src_addr; static struct rdma_addrinfo hints; +static uint8_t set_timeout; +static uint8_t timeout; static int create_message(struct cmatest_node *node) { @@ -223,7 +225,13 @@ static int addr_handler(struct cmatest_node *node) if (ret) perror("cmatose: set TOS option failed"); } - + if (set_timeout) { + ret = rdma_set_option(node->cma_id, RDMA_OPTION_ID, + RDMA_OPTION_ID_ACK_TIMEOUT, + &timeout, sizeof(timeout)); + if (ret) + perror("cmatose: set ack timeout option failed"); + } ret = rdma_resolve_route(node->cma_id, 2000); if (ret) { perror("cmatose: resolve route failed"); @@ -280,6 +288,13 @@ static int connect_handler(struct rdma_cm_id *cma_id) if (ret) goto err2; + if (set_timeout) { + ret = rdma_set_option(node->cma_id, RDMA_OPTION_ID, + RDMA_OPTION_ID_ACK_TIMEOUT, + &timeout, sizeof(timeout)); + if (ret) + perror("cmatose: set ack timeout option failed"); + } ret = post_recvs(node); if (ret) goto err2; @@ -635,7 +650,7 @@ int main(int argc, char **argv) int op, ret; hints.ai_port_space = RDMA_PS_TCP; - while ((op = getopt(argc, argv, "s:b:f:P:c:C:S:t:p:m")) != -1) { + while ((op = getopt(argc, argv, "s:b:f:P:c:C:S:t:p:a:m")) != -1) { switch (op) { case 's': dst_addr = optarg; @@ -679,6 +694,10 @@ int main(int argc, char **argv) case 'm': migrate = 1; break; + case 'a': + set_timeout = 1; + timeout = (uint8_t) strtoul(optarg, NULL, 0); + break; default: printf("usage: %s\n", argv[0]); printf("\t[-s server_address]\n"); @@ -693,6 +712,7 @@ int main(int argc, char **argv) printf("\t[-t type_of_service]\n"); printf("\t[-p port_number]\n"); printf("\t[-m(igrate)]\n"); + printf("\t[-a ack_timeout]\n"); exit(1); } } diff --git a/librdmacm/man/ucmatose.1 b/librdmacm/man/ucmatose.1 index 56e0702..d672e9d 100644 --- a/librdmacm/man/ucmatose.1 +++ b/librdmacm/man/ucmatose.1 @@ -7,10 +7,10 @@ ucmatose \- RDMA CM connection and simple ping-pong test. .nf \fIucmatose\fR [-s server_address] [-b bind_address] [-f address_format] [-P port_space] - [-c connections] [-C message_count] [-S message_size] + [-c connections] [-C message_count] [-S message_size] [-a ack_timeout] \fIucmatose\fR -s server_address [-b bind_address] [-f address_format] [-P port_space] - [-c connections] [-C message_count] [-S message_size] [-t tos] + [-c connections] [-C message_count] [-S message_size] [-t tos] [-a ack_timeout] .fi .SH "DESCRIPTION" Establishes a set of reliable RDMA connections between two nodes using the @@ -52,6 +52,10 @@ The size of each message transferred, in bytes. (default 100) Indicates the type of service used for the communication. Type of service is implementation dependent based on subnet configuration. .TP +\-a ack_timeout +Indicates the QP ACK timeout value that should be used. +The value calculated according to the formula 4.096 * 2^(ack_timeout) usec. +.TP \-m Tests event channel migration. Migrates all communication identifiers to a different event channel for disconnect events.