linux-rdma.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Michal Kalderon <mkalderon@marvell.com>
To: Bernard Metzler <BMT@zurich.ibm.com>
Cc: Ariel Elior <aelior@marvell.com>, "jgg@ziepe.ca" <jgg@ziepe.ca>,
	"dledford@redhat.com" <dledford@redhat.com>,
	"galpress@amazon.com" <galpress@amazon.com>,
	"sleybo@amazon.com" <sleybo@amazon.com>,
	"leon@kernel.org" <leon@kernel.org>,
	"linux-rdma@vger.kernel.org" <linux-rdma@vger.kernel.org>
Subject: RE: RE: [EXT] Re: [PATCH v8 rdma-next 4/7] RDMA/siw: Use the common mmap_xa helpers
Date: Mon, 2 Sep 2019 08:00:02 +0000	[thread overview]
Message-ID: <MN2PR18MB31820E898CC0C39E7A347B62A1BE0@MN2PR18MB3182.namprd18.prod.outlook.com> (raw)
In-Reply-To: <OFDCD94E77.5EF5EBC2-ON00258466.0048FF97-00258466.00493280@notes.na.collabserv.com>

> From: linux-rdma-owner@vger.kernel.org <linux-rdma-
> owner@vger.kernel.org> On Behalf Of Bernard Metzler
> 
> -----"Michal Kalderon" <mkalderon@marvell.com> wrote: -----
> 
> >To: "Bernard Metzler" <BMT@zurich.ibm.com>
> >From: "Michal Kalderon" <mkalderon@marvell.com>
> >Date: 08/30/2019 02:42PM
> >Cc: "Ariel Elior" <aelior@marvell.com>, "jgg@ziepe.ca"
> ><jgg@ziepe.ca>, "dledford@redhat.com" <dledford@redhat.com>,
> >"galpress@amazon.com" <galpress@amazon.com>,
> "sleybo@amazon.com"
> ><sleybo@amazon.com>, "leon@kernel.org" <leon@kernel.org>,
> >"linux-rdma@vger.kernel.org" <linux-rdma@vger.kernel.org>, "Ariel
> >Elior" <aelior@marvell.com>
> >Subject: [EXTERNAL] RE: [EXT] Re: [PATCH v8 rdma-next 4/7] RDMA/siw:
> >Use the common mmap_xa helpers
> >
> >> From: Bernard Metzler <BMT@zurich.ibm.com>
> >> Sent: Friday, August 30, 2019 3:08 PM
> >>
> >> External Email
> >>
> >>
> >---------------------------------------------------------------------
> >-
> >> -----"Michal Kalderon" <michal.kalderon@marvell.com> wrote: -----
> >>
> >> Hi Michael,
> >>
> >> I tried this patch. It unfortunately panics immediately when siw
> >gets used. I'll
> >> investigate further. Some comments in line.
> >Thanks for testing,
> >
> >>
> >> Thanks
> >> Bernard.
> >>
> >> >To: <mkalderon@marvell.com>, <aelior@marvell.com>,
> <jgg@ziepe.ca>,
> >> ><dledford@redhat.com>, <bmt@zurich.ibm.com>,
> >> <galpress@amazon.com>,
> >> ><sleybo@amazon.com>, <leon@kernel.org>
> >> >From: "Michal Kalderon" <michal.kalderon@marvell.com>
> >> >Date: 08/27/2019 03:31PM
> >> >Cc: <linux-rdma@vger.kernel.org>, "Michal Kalderon"
> >> ><michal.kalderon@marvell.com>, "Ariel Elior"
> >> ><ariel.elior@marvell.com>
> >> >Subject: [EXTERNAL] [PATCH v8 rdma-next 4/7] RDMA/siw: Use the
> >> common
> >> >mmap_xa helpers
> >> >
> >> >Remove the functions related to managing the mmap_xa database.
> >> >This code is now common in ib_core. Use the common API's instead.
> >> >
> >> >Signed-off-by: Ariel Elior <ariel.elior@marvell.com>
> >> >Signed-off-by: Michal Kalderon <michal.kalderon@marvell.com>
> >> >---
> >> > drivers/infiniband/sw/siw/siw.h       |  20 ++-
> >> > drivers/infiniband/sw/siw/siw_main.c  |   1 +
> >> > drivers/infiniband/sw/siw/siw_verbs.c | 223
> >> >+++++++++++++++++++---------------
> >> > drivers/infiniband/sw/siw/siw_verbs.h |   1 +
> >> > 4 files changed, 144 insertions(+), 101 deletions(-)
> >> >
> >> >+			/* If entry was inserted successfully, qp->sendq
> >> >+			 * will be freed by siw_mmap_free
> >> >+			 */
> >> >+			qp->sendq = NULL;
> >>
> >> qp->sendq points to the SQ array. Zeroing this pointer will leave
> >> siw with no idea where the WQE's are. It will panic de-referencing
> >[NULL +
> >> current position in ring buffer]. Same for RQ, SRQ and CQ.
> >Qp->sendq is only used in kernel mode, and only set to NULL is
> >user-space mode
> >Where it is allocated and mapped in user, so the user will be the one
> >accessing the rings And not kernel, unless I'm missing something.
> 
> These pointers are pointing to the allocated work queues.
> These queues/arrays are holding the actual send/recv/complete/srq work
> queue elements. It is a shared array. That is why we need mmap at all.
> 
> e.g.,
> 
> struct siw_sqe *sqe = &qp->sendq[qp->sq_get % qp->attrs.sq_size];
> 
> 
Ok got it, I'm HW oriented... so user chains and kernel are totally separated. 
Will add a flag whether to free or not and remove setting to NULL. 
Thanks,
Michal



  reply	other threads:[~2019-09-02  8:00 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-27 13:28 [PATCH v8 rdma-next 0/7] RDMA/qedr: Use the doorbell overflow recovery mechanism for RDMA Michal Kalderon
2019-08-27 13:28 ` [PATCH v8 rdma-next 1/7] RDMA/core: Move core content from ib_uverbs to ib_core Michal Kalderon
2019-08-27 13:28 ` [PATCH v8 rdma-next 2/7] RDMA/core: Create mmap database and cookie helper functions Michal Kalderon
2019-08-29 11:35   ` Gal Pressman
2019-08-29 12:40     ` Jason Gunthorpe
2019-08-30  6:10       ` [EXT] " Michal Kalderon
2019-08-27 13:28 ` [PATCH v8 rdma-next 3/7] RDMA/efa: Use the common mmap_xa helpers Michal Kalderon
2019-08-29 14:20   ` Gal Pressman
2019-08-30  6:15     ` Michal Kalderon
2019-09-01  6:56       ` Gal Pressman
2019-09-02  7:47         ` Michal Kalderon
2019-08-27 13:28 ` [PATCH v8 rdma-next 4/7] RDMA/siw: " Michal Kalderon
2019-08-27 13:28 ` [PATCH v8 rdma-next 5/7] RDMA/qedr: Use the common mmap API Michal Kalderon
2019-08-27 13:28 ` [PATCH v8 rdma-next 6/7] RDMA/qedr: Add doorbell overflow recovery support Michal Kalderon
2019-08-27 13:28 ` [PATCH v8 rdma-next 7/7] RDMA/qedr: Add iWARP doorbell " Michal Kalderon
2019-08-28 14:41 ` [PATCH v8 rdma-next 0/7] RDMA/qedr: Use the doorbell overflow recovery mechanism for RDMA Gal Pressman
2019-08-30 12:07 ` [PATCH v8 rdma-next 4/7] RDMA/siw: Use the common mmap_xa helpers Bernard Metzler
2019-08-30 12:42   ` [EXT] " Michal Kalderon
2019-08-30 13:19   ` Bernard Metzler
2019-09-02  8:00     ` Michal Kalderon [this message]
2019-09-02 10:55     ` Bernard Metzler
2019-09-02 11:21       ` Michal Kalderon
2019-09-02 11:18     ` Bernard Metzler
2019-09-02 13:16       ` Michal Kalderon
2019-09-02 14:17       ` Bernard Metzler

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=MN2PR18MB31820E898CC0C39E7A347B62A1BE0@MN2PR18MB3182.namprd18.prod.outlook.com \
    --to=mkalderon@marvell.com \
    --cc=BMT@zurich.ibm.com \
    --cc=aelior@marvell.com \
    --cc=dledford@redhat.com \
    --cc=galpress@amazon.com \
    --cc=jgg@ziepe.ca \
    --cc=leon@kernel.org \
    --cc=linux-rdma@vger.kernel.org \
    --cc=sleybo@amazon.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).