From: Leon Romanovsky <leon@kernel.org>
To: Xiao Yang <yangx.jy@fujitsu.com>
Cc: linux-rdma@vger.kernel.org, jgg@nvidia.com
Subject: Re: [PATCH v3 1/2] IB/uverbs: Move enum ib_raw_packet_caps to uapi
Date: Wed, 30 Mar 2022 14:12:42 +0300 [thread overview]
Message-ID: <YkQ7KnGtLvKmeID+@unreal> (raw)
In-Reply-To: <20220328154511.305319-1-yangx.jy@fujitsu.com>
On Mon, Mar 28, 2022 at 11:45:10PM +0800, Xiao Yang wrote:
> This enum is used by ibv_query_device_ex(3) so it should be defined
> in include/uapi/rdma/ib_user_verbs.h.
>
> Signed-off-by: Xiao Yang <yangx.jy@fujitsu.com>
> ---
> include/rdma/ib_verbs.h | 19 ++++++++++++-------
> include/uapi/rdma/ib_user_verbs.h | 7 +++++++
> 2 files changed, 19 insertions(+), 7 deletions(-)
>
> diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h
> index 69d883f7fb41..e3ed65920558 100644
> --- a/include/rdma/ib_verbs.h
> +++ b/include/rdma/ib_verbs.h
> @@ -1620,20 +1620,25 @@ struct ib_srq {
> struct rdma_restrack_entry res;
> };
>
> +/* This enum is shared with userspace */
This comment is not correct, because you are not using these values
directly in userspace. Your new ib_uverbs_raw_packet_caps is shared
and located in uapi folder.
> enum ib_raw_packet_caps {
> - /* Strip cvlan from incoming packet and report it in the matching work
> + /*
> + * Strip cvlan from incoming packet and report it in the matching work
> * completion is supported.
> */
> - IB_RAW_PACKET_CAP_CVLAN_STRIPPING = (1 << 0),
> - /* Scatter FCS field of an incoming packet to host memory is supported.
> + IB_RAW_PACKET_CAP_CVLAN_STRIPPING =
> + IB_UVERBS_RAW_PACKET_CAP_CVLAN_STRIPPING,
> + /*
> + * Scatter FCS field of an incoming packet to host memory is supported.
> */
> - IB_RAW_PACKET_CAP_SCATTER_FCS = (1 << 1),
> + IB_RAW_PACKET_CAP_SCATTER_FCS = IB_UVERBS_RAW_PACKET_CAP_SCATTER_FCS,
> /* Checksum offloads are supported (for both send and receive). */
> - IB_RAW_PACKET_CAP_IP_CSUM = (1 << 2),
> - /* When a packet is received for an RQ with no receive WQEs, the
> + IB_RAW_PACKET_CAP_IP_CSUM = IB_UVERBS_RAW_PACKET_CAP_IP_CSUM,
> + /*
> + * When a packet is received for an RQ with no receive WQEs, the
> * packet processing is delayed.
> */
> - IB_RAW_PACKET_CAP_DELAY_DROP = (1 << 3),
> + IB_RAW_PACKET_CAP_DELAY_DROP = IB_UVERBS_RAW_PACKET_CAP_DELAY_DROP,
> };
>
> enum ib_wq_type {
> diff --git a/include/uapi/rdma/ib_user_verbs.h b/include/uapi/rdma/ib_user_verbs.h
> index 7ee73a0652f1..ff549695f1ba 100644
> --- a/include/uapi/rdma/ib_user_verbs.h
> +++ b/include/uapi/rdma/ib_user_verbs.h
> @@ -1298,4 +1298,11 @@ struct ib_uverbs_ex_modify_cq {
>
> #define IB_DEVICE_NAME_MAX 64
>
> +enum ib_uverbs_raw_packet_caps {
> + IB_UVERBS_RAW_PACKET_CAP_CVLAN_STRIPPING = 1 << 0,
> + IB_UVERBS_RAW_PACKET_CAP_SCATTER_FCS = 1 << 1,
> + IB_UVERBS_RAW_PACKET_CAP_IP_CSUM = 1 << 2,
> + IB_UVERBS_RAW_PACKET_CAP_DELAY_DROP = 1 << 3,
> +};
> +
> #endif /* IB_USER_VERBS_H */
> --
> 2.34.1
>
>
>
next prev parent reply other threads:[~2022-03-30 11:12 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-28 15:45 [PATCH v3 1/2] IB/uverbs: Move enum ib_raw_packet_caps to uapi Xiao Yang
2022-03-28 15:45 ` [PATCH v3 2/2] IB/uverbs: Move part of enum ib_device_cap_flags " Xiao Yang
2022-03-30 11:14 ` Leon Romanovsky
2022-03-30 11:12 ` Leon Romanovsky [this message]
2022-03-31 3:26 ` [PATCH v3 1/2] IB/uverbs: Move enum ib_raw_packet_caps " yangx.jy
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=YkQ7KnGtLvKmeID+@unreal \
--to=leon@kernel.org \
--cc=jgg@nvidia.com \
--cc=linux-rdma@vger.kernel.org \
--cc=yangx.jy@fujitsu.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.