public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
From: Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: Kamal Heib <kamalh-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Tal Alon <talal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>,
	Liran Liss <liranl-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>,
	Amir Vadai <amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
Subject: Re: [PATCH rdma-next V2 30/32] IB/rxe: Shared objects between user and kernel
Date: Thu, 18 Feb 2016 11:17:43 -0500	[thread overview]
Message-ID: <56C5EEA7.8070503@redhat.com> (raw)
In-Reply-To: <1450948698-13383-31-git-send-email-kamalh-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>

[-- Attachment #1: Type: text/plain, Size: 5016 bytes --]

On 12/24/2015 4:18 AM, Kamal Heib wrote:
> From: Amir Vadai <amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> 
> Objects used by the userspace to post work requests.
> 
> Signed-off-by: Kamal Heib <kamalh-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> Signed-off-by: Amir Vadai <amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> Reviewed-by: Haggai Eran <haggaie-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> ---
>  include/uapi/rdma/Kbuild   |   1 +
>  include/uapi/rdma/ib_rxe.h | 139 +++++++++++++++++++++++++++++++++++++++++++++
>  2 files changed, 140 insertions(+)
>  create mode 100644 include/uapi/rdma/ib_rxe.h
> 
> diff --git a/include/uapi/rdma/Kbuild b/include/uapi/rdma/Kbuild
> index 231901b..94f9401 100644
> --- a/include/uapi/rdma/Kbuild
> +++ b/include/uapi/rdma/Kbuild
> @@ -6,3 +6,4 @@ header-y += ib_user_verbs.h
>  header-y += rdma_netlink.h
>  header-y += rdma_user_cm.h
>  header-y += hfi/
> +header-y += ib_rxe.h
> diff --git a/include/uapi/rdma/ib_rxe.h b/include/uapi/rdma/ib_rxe.h
> new file mode 100644
> index 0000000..fc1d9ca
> --- /dev/null
> +++ b/include/uapi/rdma/ib_rxe.h
> @@ -0,0 +1,139 @@
> +/*
> + * Copyright (c) 2015 Mellanox Technologies Ltd. All rights reserved.
> + *
> + * This software is available to you under a choice of one of two
> + * licenses.  You may choose to be licensed under the terms of the GNU
> + * General Public License (GPL) Version 2, available from the file
> + * COPYING in the main directory of this source tree, or the
> + * OpenIB.org BSD license below:
> + *
> + *     Redistribution and use in source and binary forms, with or
> + *     without modification, are permitted provided that the following
> + *     conditions are met:
> + *
> + *	- Redistributions of source code must retain the above
> + *	  copyright notice, this list of conditions and the following
> + *	  disclaimer.
> + *
> + *	- Redistributions in binary form must reproduce the above
> + *	  copyright notice, this list of conditions and the following
> + *	  disclaimer in the documentation and/or other materials
> + *	  provided with the distribution.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
> + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
> + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
> + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
> + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
> + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
> + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
> + * SOFTWARE.
> + */
> +
> +#ifndef IB_RXE_H
> +#define IB_RXE_H
> +
> +#include <linux/types.h>
> +
> +union rxe_gid {
> +	__u8	raw[16];
> +	struct {
> +		__be64	subnet_prefix;
> +		__be64	interface_id;
> +	} global;
> +};
> +
> +struct rxe_global_route {
> +	union rxe_gid	dgid;
> +	__u32		flow_label;
> +	__u8		sgid_index;
> +	__u8		hop_limit;
> +	__u8		traffic_class;
> +};
> +
> +struct rxe_av {
> +	__u8			port_num;
> +	__u8			network_type;
> +	struct rxe_global_route	grh;
> +	union {
> +		struct sockaddr		_sockaddr;
> +		struct sockaddr_in	_sockaddr_in;
> +		struct sockaddr_in6	_sockaddr_in6;
> +	} sgid_addr, dgid_addr;
> +};
> +
> +struct rxe_send_wr {
> +	__u64			wr_id;
> +	__u32			num_sge;
> +	__u32			opcode;
> +	__u32			send_flags;
> +	union {
> +		__u32		imm_data;
> +		__u32		invalidate_rkey;
> +	} ex;
> +	union {
> +		struct {
> +			__u64	remote_addr;
> +			__u32	rkey;
> +		} rdma;
> +		struct {
> +			__u64	remote_addr;
> +			__u64	compare_add;
> +			__u64	swap;
> +			__u32	rkey;
> +		} atomic;
> +		struct {
> +			__u32	remote_qpn;
> +			__u32	remote_qkey;
> +			__u16	pkey_index;
> +		} ud;
> +	} wr;
> +};
> +
> +struct rxe_sge {
> +	__u64	addr;
> +	__u32	length;
> +	__u32	lkey;
> +};
> +
> +struct mminfo {
> +	__u64			offset;
> +	__u32			size;
> +	__u32			pad;
> +};

I'm highly leary of using this name for an rxe shared object.  I would
much prefer that this be rxe specific just to avoid the possibility of
future conflicts (I checked, there are no current conflicts, but the
name is still so generic that it could have future issues).

> +
> +struct rxe_dma_info {
> +	__u32			length;
> +	__u32			resid;
> +	__u32			cur_sge;
> +	__u32			num_sge;
> +	__u32			sge_offset;
> +	union {
> +		__u8		inline_data[0];
> +		struct rxe_sge	sge[0];
> +	};
> +};
> +
> +struct rxe_send_wqe {
> +	struct rxe_send_wr	wr;
> +	struct rxe_av		av;
> +	__u32			status;
> +	__u32			state;
> +	__u64			iova;
> +	__u32			mask;
> +	__u32			first_psn;
> +	__u32			last_psn;
> +	__u32			ack_length;
> +	__u32			ssn;
> +	__u32			has_rd_atomic;
> +	struct rxe_dma_info	dma;
> +};
> +
> +struct rxe_recv_wqe {
> +	__u64			wr_id;
> +	__u32			num_sge;
> +	__u32			padding;
> +	struct rxe_dma_info	dma;
> +};
> +
> +#endif /* IB_RXE_H */
> 



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 884 bytes --]

  parent reply	other threads:[~2016-02-18 16:17 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-24  9:17 [PATCH rdma-next V2 00/32] Soft-RoCE driver Kamal Heib
     [not found] ` <1450948698-13383-1-git-send-email-kamalh-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2015-12-24  9:17   ` [PATCH rdma-next V2 01/32] IB/core: Macro for RoCEv2 UDP port Kamal Heib
     [not found]     ` <1450948698-13383-2-git-send-email-kamalh-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2015-12-27  6:58       ` Leon Romanovsky
     [not found]         ` <20151227065815.GE8501-2ukJVAZIZ/Y@public.gmane.org>
2016-02-19 18:26           ` Doug Ledford
2015-12-24  9:17   ` [PATCH rdma-next V2 02/32] IB/core: Add SEND_LAST_INV and SEND_ONLY_INV opcodes Kamal Heib
2015-12-24  9:17   ` [PATCH rdma-next V2 03/32] IB/rxe: IBA header types and methods Kamal Heib
2015-12-24  9:17   ` [PATCH rdma-next V2 04/32] IB/rxe: Bit mask and lengths declaration for different opcodes Kamal Heib
2015-12-24  9:17   ` [PATCH rdma-next V2 05/32] IB/rxe: Default rxe device and port parameters Kamal Heib
2015-12-24  9:17   ` [PATCH rdma-next V2 06/32] IB/rxe: External interface to lower level modules Kamal Heib
2015-12-24  9:17   ` [PATCH rdma-next V2 07/32] IB/rxe: Misc local interfaces between files in ib_rxe Kamal Heib
2015-12-24  9:17   ` [PATCH rdma-next V2 08/32] IB/rxe: Add maintainer for rxe driver Kamal Heib
2015-12-24  9:17   ` [PATCH rdma-next V2 09/32] IB/rxe: Work request's opcode information table Kamal Heib
2015-12-24  9:17   ` [PATCH rdma-next V2 10/32] IB/rxe: User/kernel shared queues infrastructure Kamal Heib
2015-12-24  9:17   ` [PATCH rdma-next V2 11/32] IB/rxe: Common user/kernel queue implementation Kamal Heib
2015-12-24  9:17   ` [PATCH rdma-next V2 12/32] IB/rxe: Interface to ib_core Kamal Heib
2015-12-24  9:17   ` [PATCH rdma-next V2 13/32] IB/rxe: Allocation pool for RDMA objects Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 14/32] IB/rxe: RXE tasks handling Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 15/32] IB/rxe: Address vector manipulation functions Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 16/32] IB/rxe: Shared Receive Queue (SRQ) " Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 17/32] IB/rxe: Completion Queue (CQ) " Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 18/32] IB/rxe: Queue Pair (QP) handling Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 19/32] IB/rxe: Memory Region (MR) handling Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 20/32] IB/rxe: Multicast implementation Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 21/32] IB/rxe: Received packets handling Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 22/32] IB/rxe: Completion handling Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 23/32] IB/rxe: QP request handling Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 24/32] IB/rxe: QP response handling Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 25/32] IB/rxe: Dummy DMA callbacks for RXE device Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 26/32] IB/rxe: ICRC calculations Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 27/32] IB/rxe: Module init hooks Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 28/32] IB/rxe: Interface to netdev stack Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 29/32] IB/rxe: sysfs interface to RXE Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 30/32] IB/rxe: Shared objects between user and kernel Kamal Heib
     [not found]     ` <1450948698-13383-31-git-send-email-kamalh-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2016-02-18 16:17       ` Doug Ledford [this message]
2015-12-24  9:18   ` [PATCH rdma-next V2 31/32] IB/rxe: Add Soft-RoCE to kbuild and makefiles Kamal Heib
2015-12-24  9:18   ` [PATCH rdma-next V2 32/32] IB/rxe: TODO file while in staging Kamal Heib
2015-12-24 10:02   ` [PATCH rdma-next V2 00/32] Soft-RoCE driver Christoph Hellwig
     [not found]     ` <20151224100228.GB21387-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
2015-12-24 12:58       ` Or Gerlitz
     [not found]         ` <CAJ3xEMiR7gcgScbiCkx3YpXJpJO4LYHvUY=1kpxxwiGtudF-qw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-12-24 14:20           ` Christoph Hellwig
     [not found]             ` <20151224142047.GA29757-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
2015-12-26 18:09               ` Doug Ledford
2015-12-26  8:03   ` Ming Lin

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=56C5EEA7.8070503@redhat.com \
    --to=dledford-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
    --cc=amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    --cc=kamalh-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=liranl-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    --cc=talal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox