|
|
764884 |
From 382253d87dab98a7d082cd91e40eb59c8b70077b Mon Sep 17 00:00:00 2001
|
|
|
764884 |
From: Noa Osherovich <noaos@mellanox.com>
|
|
|
764884 |
Date: Mon, 28 Oct 2019 15:58:12 +0200
|
|
|
764884 |
Subject: [PATCH rdma-core 03/13] man: Fix wrong field in ibv_wr_post's man
|
|
|
764884 |
page
|
|
|
764884 |
|
|
|
764884 |
[ Upstream commit 5850789bb89df8f418d99b5dfb7f18bc3dd6cf58 ]
|
|
|
764884 |
|
|
|
764884 |
The example in the man page refers to a non-existing field.
|
|
|
764884 |
Update to the correct field name.
|
|
|
764884 |
|
|
|
764884 |
Fixes: 58ef962809865 ('verbs: Introduce a new post send API')
|
|
|
764884 |
Signed-off-by: Noa Osherovich <noaos@mellanox.com>
|
|
|
764884 |
Signed-off-by: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
|
|
764884 |
---
|
|
|
764884 |
libibverbs/man/ibv_wr_post.3.md | 2 +-
|
|
|
764884 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
764884 |
|
|
|
764884 |
diff --git a/libibverbs/man/ibv_wr_post.3.md b/libibverbs/man/ibv_wr_post.3.md
|
|
|
764884 |
index 4d5f80d6..ab7fc5f5 100644
|
|
|
764884 |
--- a/libibverbs/man/ibv_wr_post.3.md
|
|
|
764884 |
+++ b/libibverbs/man/ibv_wr_post.3.md
|
|
|
764884 |
@@ -315,7 +315,7 @@ ibv_wr_set_sge(qpx, lkey, local_addr_1, length_1);
|
|
|
764884 |
|
|
|
764884 |
/* create 2nd WRITE_WITH_IMM WR entry */
|
|
|
764884 |
qpx->wr_id = my_wr_id_2;
|
|
|
764884 |
-qpx->send_flags = IBV_SEND_SIGNALED;
|
|
|
764884 |
+qpx->wr_flags = IBV_SEND_SIGNALED;
|
|
|
764884 |
ibv_wr_rdma_write_imm(qpx, rkey, remote_addr_2, htonl(0x1234));
|
|
|
764884 |
ibv_set_wr_sge(qpx, lkey, local_addr_2, length_2);
|
|
|
764884 |
|
|
|
764884 |
--
|
|
|
764884 |
2.20.1
|
|
|
764884 |
|