From: Jason Gunthorpe <jgg@nvidia.com> To: Gal Pressman <galpress@amazon.com> Cc: Doug Ledford <dledford@redhat.com>, linux-rdma@vger.kernel.org, Alexander Matushevsky <matua@amazon.com>, Firas JahJah <firasj@amazon.com>, Yossi Leybovich <sleybo@amazon.com> Subject: Re: [PATCH for-next 4/4] RDMA/efa: CQ notifications Date: Wed, 1 Sep 2021 12:36:59 -0300 [thread overview] Message-ID: <20210901153659.GL1721383@nvidia.com> (raw) In-Reply-To: <c8549e51-47a2-1426-b44b-f1c4ade3dce2@amazon.com> On Wed, Sep 01, 2021 at 05:24:43PM +0300, Gal Pressman wrote: > On 01/09/2021 14:57, Jason Gunthorpe wrote: > > On Wed, Sep 01, 2021 at 02:50:42PM +0300, Gal Pressman wrote: > >> On 20/08/2021 21:27, Jason Gunthorpe wrote: > >>> On Wed, Aug 11, 2021 at 06:11:31PM +0300, Gal Pressman wrote: > >>>> diff --git a/drivers/infiniband/hw/efa/efa_main.c b/drivers/infiniband/hw/efa/efa_main.c > >>>> index 417dea5f90cf..29db4dec02f0 100644 > >>>> +++ b/drivers/infiniband/hw/efa/efa_main.c > >>>> @@ -67,6 +67,46 @@ static void efa_release_bars(struct efa_dev *dev, int bars_mask) > >>>> pci_release_selected_regions(pdev, release_bars); > >>>> } > >>>> > >>>> +static void efa_process_comp_eqe(struct efa_dev *dev, struct efa_admin_eqe *eqe) > >>>> +{ > >>>> + u16 cqn = eqe->u.comp_event.cqn; > >>>> + struct efa_cq *cq; > >>>> + > >>>> + cq = xa_load(&dev->cqs_xa, cqn); > >>>> + if (unlikely(!cq)) { > >>> > >>> This seems unlikely to be correct, what prevents cq from being > >>> destroyed concurrently? > >>> > >>> A comp_handler cannot be running after cq destroy completes. > >> > >> Sorry for the long turnaround, was OOO. > >> > >> The CQ cannot be destroyed until all completion events are acked. > >> https://github.com/linux-rdma/rdma-core/blob/7fd01f0c6799f0ecb99cae03c22cf7ff61ffbf5a/libibverbs/man/ibv_get_cq_event.3#L45 > >> https://github.com/linux-rdma/rdma-core/blob/7fd01f0c6799f0ecb99cae03c22cf7ff61ffbf5a/libibverbs/cmd_cq.c#L208 > > > > That is something quite different, and in userspace. > > > > What in the kernel prevents tha xa_load and the xa_erase from racing together? > > Good point. > I think we need to surround efa_process_comp_eqe() with an rcu_read_lock() and > have a synchronize_rcu() after removing it from the xarray in > destroy_cq. Try to avoid synchronize_rcu() > Though I'd like to avoid copy-pasting xa_load() in order to use the > advanced xas_load() function. Why would you need that? Just call xa_load() while holding the rcu_read_lock() if that is what you want. Can you put the whole function under the rcu_read_lock()? > Do you have any better ideas? Other common alternative is to use the xa_lock(), but that doesn't seem suitable for an EQ Jason
next prev parent reply other threads:[~2021-09-01 15:37 UTC|newest] Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-08-11 15:11 [PATCH for-next 0/4] EFA " Gal Pressman 2021-08-11 15:11 ` [PATCH for-next 1/4] RDMA/efa: Free IRQ vectors on error flow Gal Pressman 2021-08-20 18:34 ` Jason Gunthorpe 2021-08-11 15:11 ` [PATCH for-next 2/4] RDMA/efa: Remove unused cpu field from irq struct Gal Pressman 2021-08-11 15:11 ` [PATCH for-next 3/4] RDMA/efa: Rename vector field in efa_irq struct to irqn Gal Pressman 2021-08-11 15:11 ` [PATCH for-next 4/4] RDMA/efa: CQ notifications Gal Pressman 2021-08-20 18:27 ` Jason Gunthorpe 2021-09-01 11:50 ` Gal Pressman 2021-09-01 11:57 ` Jason Gunthorpe 2021-09-01 14:24 ` Gal Pressman 2021-09-01 15:36 ` Jason Gunthorpe [this message] 2021-09-02 7:03 ` Gal Pressman 2021-09-02 13:02 ` Jason Gunthorpe 2021-09-02 15:09 ` Gal Pressman 2021-09-02 15:10 ` Jason Gunthorpe 2021-09-02 15:17 ` Gal Pressman 2021-09-02 15:41 ` Jason Gunthorpe 2021-09-05 7:25 ` Gal Pressman 2021-09-05 7:59 ` Leon Romanovsky 2021-09-05 10:45 ` Gal Pressman 2021-09-05 10:54 ` Leon Romanovsky 2021-09-05 11:05 ` Gal Pressman 2021-09-05 13:14 ` Leon Romanovsky 2021-09-05 14:36 ` Gal Pressman 2021-09-07 11:31 ` Jason Gunthorpe 2021-09-09 11:00 ` Gal Pressman 2021-08-20 18:36 ` [PATCH for-next 0/4] EFA " 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=20210901153659.GL1721383@nvidia.com \ --to=jgg@nvidia.com \ --cc=dledford@redhat.com \ --cc=firasj@amazon.com \ --cc=galpress@amazon.com \ --cc=linux-rdma@vger.kernel.org \ --cc=matua@amazon.com \ --cc=sleybo@amazon.com \ --subject='Re: [PATCH for-next 4/4] RDMA/efa: CQ notifications' \ /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
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.