From: Jason Gunthorpe <jgg@nvidia.com>
To: "yangx.jy@fujitsu.com" <yangx.jy@fujitsu.com>
Cc: "linux-rdma@vger.kernel.org" <linux-rdma@vger.kernel.org>,
"rpearsonhpe@gmail.com" <rpearsonhpe@gmail.com>,
"leon@kernel.org" <leon@kernel.org>,
"lizhijian@fujitsu.com" <lizhijian@fujitsu.com>,
"y-goto@fujitsu.com" <y-goto@fujitsu.com>,
"zyjzyj2000@gmail.com" <zyjzyj2000@gmail.com>
Subject: Re: [PATCH v6 1/8] RDMA: Extend RDMA user ABI to support atomic write
Date: Tue, 22 Nov 2022 15:49:52 -0400 [thread overview]
Message-ID: <Y30n4NtOepuzUhxN@nvidia.com> (raw)
In-Reply-To: <20221015063648.52285-2-yangx.jy@fujitsu.com>
On Sat, Oct 15, 2022 at 06:37:04AM +0000, yangx.jy@fujitsu.com wrote:
> 1) Define new atomic write request/completion in userspace.
> 2) Define new atomic write capability in userspace.
>
> Signed-off-by: Xiao Yang <yangx.jy@fujitsu.com>
> ---
> include/uapi/rdma/ib_user_verbs.h | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/include/uapi/rdma/ib_user_verbs.h b/include/uapi/rdma/ib_user_verbs.h
> index 43672cb1fd57..237814815544 100644
> --- a/include/uapi/rdma/ib_user_verbs.h
> +++ b/include/uapi/rdma/ib_user_verbs.h
> @@ -466,6 +466,7 @@ enum ib_uverbs_wc_opcode {
> IB_UVERBS_WC_BIND_MW = 5,
> IB_UVERBS_WC_LOCAL_INV = 6,
> IB_UVERBS_WC_TSO = 7,
> + IB_UVERBS_WC_ATOMIC_WRITE = 9,
> };
Why is this 9? The following patch does
@@ -985,6 +986,7 @@ enum ib_wc_opcode {
IB_WC_REG_MR,
IB_WC_MASKED_COMP_SWAP,
IB_WC_MASKED_FETCH_ADD,
+ IB_WC_ATOMIC_WRITE = IB_UVERBS_WC_ATOMIC_WRITE,
Which corrupts the enum.
It should be like this:
+++ b/include/rdma/ib_verbs.h
@@ -983,10 +983,10 @@ enum ib_wc_opcode {
IB_WC_BIND_MW = IB_UVERBS_WC_BIND_MW,
IB_WC_LOCAL_INV = IB_UVERBS_WC_LOCAL_INV,
IB_WC_LSO = IB_UVERBS_WC_TSO,
+ IB_WC_ATOMIC_WRITE = IB_UVERBS_WC_ATOMIC_WRITE,
IB_WC_REG_MR,
IB_WC_MASKED_COMP_SWAP,
IB_WC_MASKED_FETCH_ADD,
- IB_WC_ATOMIC_WRITE = IB_UVERBS_WC_ATOMIC_WRITE,
/*
* Set value of IB_WC_RECV so consumers can test if a completion is a
* receive by testing (opcode & IB_WC_RECV).
+++ b/include/uapi/rdma/ib_user_verbs.h
@@ -466,7 +466,7 @@ enum ib_uverbs_wc_opcode {
IB_UVERBS_WC_BIND_MW = 5,
IB_UVERBS_WC_LOCAL_INV = 6,
IB_UVERBS_WC_TSO = 7,
- IB_UVERBS_WC_ATOMIC_WRITE = 9,
+ IB_UVERBS_WC_ATOMIC_WRITE = 8,
};
struct ib_uverbs_wc {
Jason
next prev parent reply other threads:[~2022-11-22 19:49 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-15 6:37 [PATCH v6 0/8] RDMA/rxe: Add atomic write operation yangx.jy
2022-10-15 6:37 ` [PATCH v6 2/8] RDMA: Extend RDMA kernel ABI to support atomic write yangx.jy
2022-10-15 6:37 ` [PATCH v6 1/8] RDMA: Extend RDMA user " yangx.jy
2022-11-22 19:49 ` Jason Gunthorpe [this message]
2022-12-01 11:04 ` Xiao Yang
2022-10-15 6:37 ` [PATCH v6 3/8] RDMA/rxe: Extend rxe " yangx.jy
2022-10-15 6:37 ` [PATCH v6 4/8] RDMA/rxe: Extend rxe packet format " yangx.jy
2022-10-15 6:37 ` [PATCH v6 5/8] RDMA/rxe: Make requester support atomic write on RC service yangx.jy
2022-10-15 6:37 ` [PATCH v6 6/8] RDMA/rxe: Make responder " yangx.jy
2022-10-15 6:37 ` [PATCH v6 7/8] RDMA/rxe: Implement atomic write completion yangx.jy
2022-10-15 6:37 ` [PATCH v6 8/8] RDMA/rxe: Enable atomic write capability for rxe device yangx.jy
2022-10-15 8:41 ` [PATCH v6 0/8] RDMA/rxe: Add atomic write operation Yang, Xiao/杨 晓
2022-11-22 19:54 ` Jason Gunthorpe
2022-12-01 11:58 ` Xiao Yang
2022-12-01 12:58 ` Jason Gunthorpe
2022-12-01 14:16 ` Xiao Yang
2022-12-01 14:45 ` Jason Gunthorpe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Y30n4NtOepuzUhxN@nvidia.com \
--to=jgg@nvidia.com \
--cc=leon@kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=lizhijian@fujitsu.com \
--cc=rpearsonhpe@gmail.com \
--cc=y-goto@fujitsu.com \
--cc=yangx.jy@fujitsu.com \
--cc=zyjzyj2000@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.