49 lines
2.5 KiB
Diff
49 lines
2.5 KiB
Diff
From e86cfd2fcf1a48bebb6055d8016469aa75a17768 Mon Sep 17 00:00:00 2001
|
|
From: Xiao Yang <yangx.jy@cn.fujitsu.com>
|
|
Date: Thu, 14 Jan 2021 13:23:37 +0800
|
|
Subject: [PATCH] verbs: Replace SQ with RQ in max_recv_sge's documents
|
|
|
|
[ Upstream commit 380acc92201e6a038258403a36291671b6041ebe ]
|
|
|
|
Fix copy/paste mistake.
|
|
|
|
Fixes: 9845a77c8812 ("Add remaining libibverbs manpages")
|
|
Fixes: 058c67977dad ("XRC man pages")
|
|
Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
|
|
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
|
|
Signed-off-by: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
|
---
|
|
libibverbs/man/ibv_create_qp.3 | 2 +-
|
|
libibverbs/man/ibv_create_qp_ex.3 | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/libibverbs/man/ibv_create_qp.3 b/libibverbs/man/ibv_create_qp.3
|
|
index 1cdf247445d2..dfbd245fa7b7 100644
|
|
--- a/libibverbs/man/ibv_create_qp.3
|
|
+++ b/libibverbs/man/ibv_create_qp.3
|
|
@@ -40,7 +40,7 @@ struct ibv_qp_cap {
|
|
uint32_t max_send_wr; /* Requested max number of outstanding WRs in the SQ */
|
|
uint32_t max_recv_wr; /* Requested max number of outstanding WRs in the RQ */
|
|
uint32_t max_send_sge; /* Requested max number of scatter/gather (s/g) elements in a WR in the SQ */
|
|
-uint32_t max_recv_sge; /* Requested max number of s/g elements in a WR in the SQ */
|
|
+uint32_t max_recv_sge; /* Requested max number of s/g elements in a WR in the RQ */
|
|
uint32_t max_inline_data;/* Requested max number of data (bytes) that can be posted inline to the SQ, otherwise 0 */
|
|
.in -8
|
|
};
|
|
diff --git a/libibverbs/man/ibv_create_qp_ex.3 b/libibverbs/man/ibv_create_qp_ex.3
|
|
index 277e9fa05e61..309281262ac6 100644
|
|
--- a/libibverbs/man/ibv_create_qp_ex.3
|
|
+++ b/libibverbs/man/ibv_create_qp_ex.3
|
|
@@ -49,7 +49,7 @@ struct ibv_qp_cap {
|
|
uint32_t max_send_wr; /* Requested max number of outstanding WRs in the SQ */
|
|
uint32_t max_recv_wr; /* Requested max number of outstanding WRs in the RQ */
|
|
uint32_t max_send_sge; /* Requested max number of scatter/gather (s/g) elements in a WR in the SQ */
|
|
-uint32_t max_recv_sge; /* Requested max number of s/g elements in a WR in the SQ */
|
|
+uint32_t max_recv_sge; /* Requested max number of s/g elements in a WR in the RQ */
|
|
uint32_t max_inline_data;/* Requested max number of data (bytes) that can be posted inline to the SQ, otherwise 0 */
|
|
.in -8
|
|
};
|
|
--
|
|
2.25.4
|
|
|