From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Gunthorpe Subject: Re: [PATCH rdma-next v1 12/12] IB/mlx5: Add DEVX support for CQ events Date: Mon, 24 Jun 2019 18:06:29 +0000 Message-ID: <20190624180626.GM7418@mellanox.com> References: <20190618171540.11729-1-leon@kernel.org> <20190618171540.11729-13-leon@kernel.org> <20190624120416.GE5479@mellanox.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Return-path: In-Reply-To: Content-Language: en-US Content-ID: <5BDBA9AF588FF647BFDD2A999E521D68@eurprd05.prod.outlook.com> Sender: netdev-owner@vger.kernel.org To: Yishai Hadas Cc: Leon Romanovsky , Doug Ledford , Leon Romanovsky , RDMA mailing list , Yishai Hadas , Saeed Mahameed , linux-netdev List-Id: linux-rdma@vger.kernel.org On Mon, Jun 24, 2019 at 08:03:07PM +0300, Yishai Hadas wrote: > On 6/24/2019 3:04 PM, Jason Gunthorpe wrote: > > On Tue, Jun 18, 2019 at 08:15:40PM +0300, Leon Romanovsky wrote: > > > From: Yishai Hadas > > >=20 > > > Add DEVX support for CQ events by creating and destroying the CQ via > > > mlx5_core and set an handler to manage its completions. > > >=20 > > > Signed-off-by: Yishai Hadas > > > Signed-off-by: Leon Romanovsky > > > drivers/infiniband/hw/mlx5/devx.c | 40 ++++++++++++++++++++++++++++= +++ > > > 1 file changed, 40 insertions(+) > > >=20 > > > diff --git a/drivers/infiniband/hw/mlx5/devx.c b/drivers/infiniband/h= w/mlx5/devx.c > > > index 49fdce95d6d9..91ccd58ebc05 100644 > > > +++ b/drivers/infiniband/hw/mlx5/devx.c > > > @@ -19,9 +19,12 @@ > > > #define UVERBS_MODULE_NAME mlx5_ib > > > #include > > > +static void dispatch_event_fd(struct list_head *fd_list, const void = *data); > > > + > > > enum devx_obj_flags { > > > DEVX_OBJ_FLAGS_INDIRECT_MKEY =3D 1 << 0, > > > DEVX_OBJ_FLAGS_DCT =3D 1 << 1, > > > + DEVX_OBJ_FLAGS_CQ =3D 1 << 2, > > > }; > > > struct devx_async_data { > > > @@ -94,6 +97,7 @@ struct devx_async_event_file { > > > #define MLX5_MAX_DESTROY_INBOX_SIZE_DW MLX5_ST_SZ_DW(delete_fte_in) > > > struct devx_obj { > > > struct mlx5_core_dev *mdev; > > > + struct mlx5_ib_dev *ib_dev; > >=20 > > This seems strange, why would we need to store the core_dev and the ib_= dev > > in a struct when ibdev->mdev =3D=3D core_dev? > >=20 >=20 > We need to add the ib_dev as we can't access it from the core_dev. > Most of this patch we can probably go and drop the mdev and access it fro= m > ib_dev, I preferred to not handle that in this patch. Should add a patch to revise it then Jason