diff mbox series

[for-next,4/7] RDMA/bnxt_re: Refactor net ring allocation function

Message ID 1579845165-18002-5-git-send-email-devesh.sharma@broadcom.com (mailing list archive)
State Superseded
Headers show
Series Refactor control path of bnxt_re driver | expand

Commit Message

Devesh Sharma Jan. 24, 2020, 5:52 a.m. UTC
Introducing a new attribute structure to reduce
the long list of arguments passed in bnxt_re_net_ring_alloc()
function.

The caller of bnxt_re_net_ring_alloc should fill in
the list of attributes in bnxt_re_ring_attr structure
and then pass the pointer to the function.

Signed-off-by: Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
Signed-off-by: Selvin Xavier <selvin.xavier@broadcom.com>
Signed-off-by: Devesh Sharma <devesh.sharma@broadcom.com>
---
 drivers/infiniband/hw/bnxt_re/bnxt_re.h |  9 +++++
 drivers/infiniband/hw/bnxt_re/main.c    | 65 ++++++++++++++++++---------------
 2 files changed, 45 insertions(+), 29 deletions(-)

Comments

Leon Romanovsky Jan. 26, 2020, 2:29 p.m. UTC | #1
On Fri, Jan 24, 2020 at 12:52:42AM -0500, Devesh Sharma wrote:
> Introducing a new attribute structure to reduce
> the long list of arguments passed in bnxt_re_net_ring_alloc()
> function.
>
> The caller of bnxt_re_net_ring_alloc should fill in
> the list of attributes in bnxt_re_ring_attr structure
> and then pass the pointer to the function.
>
> Signed-off-by: Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
> Signed-off-by: Selvin Xavier <selvin.xavier@broadcom.com>
> Signed-off-by: Devesh Sharma <devesh.sharma@broadcom.com>
> ---
>  drivers/infiniband/hw/bnxt_re/bnxt_re.h |  9 +++++
>  drivers/infiniband/hw/bnxt_re/main.c    | 65 ++++++++++++++++++---------------
>  2 files changed, 45 insertions(+), 29 deletions(-)
>
> diff --git a/drivers/infiniband/hw/bnxt_re/bnxt_re.h b/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> index 86274f4..c736e82 100644
> --- a/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> +++ b/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> @@ -89,6 +89,15 @@
>
>  #define BNXT_RE_DEFAULT_ACK_DELAY	16
>
> +struct bnxt_re_ring_attr {
> +	dma_addr_t	*dma_arr;
> +	int		pages;
> +	int		type;
> +	u32		depth;
> +	u32		lrid; /* Logical ring id */
> +	u8		mode;
> +};
> +
>  struct bnxt_re_work {
>  	struct work_struct	work;
>  	unsigned long		event;
> diff --git a/drivers/infiniband/hw/bnxt_re/main.c b/drivers/infiniband/hw/bnxt_re/main.c
> index a966c68..648a5ea 100644
> --- a/drivers/infiniband/hw/bnxt_re/main.c
> +++ b/drivers/infiniband/hw/bnxt_re/main.c
> @@ -427,9 +427,9 @@ static int bnxt_re_net_ring_free(struct bnxt_re_dev *rdev,
>  	return rc;
>  }
>
> -static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
> -				  int pages, int type, u32 ring_mask,
> -				  u32 map_index, u16 *fw_ring_id)
> +static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev,
> +				  struct bnxt_re_ring_attr *ring_attr,
> +				  u16 *fw_ring_id)
>  {
>  	struct bnxt_en_dev *en_dev = rdev->en_dev;
>  	struct hwrm_ring_alloc_input req = {0};
> @@ -443,18 +443,18 @@ static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
>  	memset(&fw_msg, 0, sizeof(fw_msg));
>  	bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_RING_ALLOC, -1, -1);
>  	req.enables = 0;
> -	req.page_tbl_addr =  cpu_to_le64(dma_arr[0]);
> -	if (pages > 1) {
> +	req.page_tbl_addr =  cpu_to_le64(ring_attr->dma_arr[0]);
> +	if (ring_attr->pages > 1) {
>  		/* Page size is in log2 units */
>  		req.page_size = BNXT_PAGE_SHIFT;
>  		req.page_tbl_depth = 1;
>  	}
>  	req.fbo = 0;
>  	/* Association of ring index with doorbell index and MSIX number */
> -	req.logical_id = cpu_to_le16(map_index);
> -	req.length = cpu_to_le32(ring_mask + 1);
> -	req.ring_type = type;
> -	req.int_mode = RING_ALLOC_REQ_INT_MODE_MSIX;
> +	req.logical_id = cpu_to_le16(ring_attr->lrid);
> +	req.length = cpu_to_le32(ring_attr->depth + 1);
> +	req.ring_type = ring_attr->type;
> +	req.int_mode = ring_attr->mode;
>  	bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
>  			    sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
>  	rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
> @@ -1006,12 +1006,13 @@ static void bnxt_re_free_res(struct bnxt_re_dev *rdev)
>
>  static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
>  {
> +	struct bnxt_qplib_ctx *qplib_ctx;
> +	struct bnxt_re_ring_attr rattr;
>  	int num_vec_created = 0;
> -	dma_addr_t *pg_map;
>  	int rc = 0, i;
> -	int pages;
>  	u8 type;
>
> +	memset(&rattr, 0, sizeof(rattr));

Initialize rattr to zero from the beginning and save call to memset.

>  	/* Configure and allocate resources for qplib */
>  	rdev->qplib_res.rcfw = &rdev->rcfw;
>  	rc = bnxt_qplib_get_dev_attr(&rdev->rcfw, &rdev->dev_attr,
> @@ -1030,10 +1031,13 @@ static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
>  	if (rc)
>  		goto dealloc_res;
>
> +	qplib_ctx = &rdev->qplib_ctx;
>  	for (i = 0; i < rdev->num_msix - 1; i++) {
> -		rdev->nq[i].res = &rdev->qplib_res;
> -		rdev->nq[i].hwq.max_elements = BNXT_RE_MAX_CQ_COUNT +
> -			BNXT_RE_MAX_SRQC_COUNT + 2;
> +		struct bnxt_qplib_nq *nq;
> +
> +		nq = &rdev->nq[i];
> +		nq->hwq.max_elements = (qplib_ctx->cq_count +
> +					qplib_ctx->srqc_count + 2);
>  		rc = bnxt_qplib_alloc_nq(&rdev->qplib_res, &rdev->nq[i]);
>  		if (rc) {
>  			dev_err(rdev_to_dev(rdev), "Alloc Failed NQ%d rc:%#x",
> @@ -1041,12 +1045,13 @@ static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
>  			goto free_nq;
>  		}
>  		type = bnxt_qplib_get_ring_type(rdev->chip_ctx);
> -		pg_map = rdev->nq[i].hwq.pbl[PBL_LVL_0].pg_map_arr;
> -		pages = rdev->nq[i].hwq.pbl[rdev->nq[i].hwq.level].pg_count;
> -		rc = bnxt_re_net_ring_alloc(rdev, pg_map, pages, type,
> -					    BNXT_QPLIB_NQE_MAX_CNT - 1,
> -					    rdev->msix_entries[i + 1].ring_idx,
> -					    &rdev->nq[i].ring_id);
> +		rattr.dma_arr = nq->hwq.pbl[PBL_LVL_0].pg_map_arr;
> +		rattr.pages = nq->hwq.pbl[rdev->nq[i].hwq.level].pg_count;
> +		rattr.type = type;
> +		rattr.mode = RING_ALLOC_REQ_INT_MODE_MSIX;
> +		rattr.depth = BNXT_QPLIB_NQE_MAX_CNT - 1;
> +		rattr.lrid = rdev->msix_entries[i + 1].ring_idx;
> +		rc = bnxt_re_net_ring_alloc(rdev, &rattr, &nq->ring_id);
>  		if (rc) {
>  			dev_err(rdev_to_dev(rdev),
>  				"Failed to allocate NQ fw id with rc = 0x%x",
> @@ -1371,10 +1376,10 @@ static void bnxt_re_worker(struct work_struct *work)
>
>  static int bnxt_re_ib_reg(struct bnxt_re_dev *rdev)
>  {
> -	dma_addr_t *pg_map;
> -	u32 db_offt, ridx;
> -	int pages, vid;
> +	struct bnxt_re_ring_attr rattr;
> +	u32 db_offt;
>  	bool locked;
> +	int vid;
>  	u8 type;
>  	int rc;
>
> @@ -1383,6 +1388,7 @@ static int bnxt_re_ib_reg(struct bnxt_re_dev *rdev)
>  	locked = true;
>
>  	/* Registered a new RoCE device instance to netdev */
> +	memset(&rattr, 0, sizeof(rattr));

ditto

>  	rc = bnxt_re_register_netdev(rdev);
>  	if (rc) {
>  		rtnl_unlock();
> @@ -1422,12 +1428,13 @@ static int bnxt_re_ib_reg(struct bnxt_re_dev *rdev)
>  	}
>
>  	type = bnxt_qplib_get_ring_type(rdev->chip_ctx);
> -	pg_map = rdev->rcfw.creq.pbl[PBL_LVL_0].pg_map_arr;
> -	pages = rdev->rcfw.creq.pbl[rdev->rcfw.creq.level].pg_count;
> -	ridx = rdev->msix_entries[BNXT_RE_AEQ_IDX].ring_idx;
> -	rc = bnxt_re_net_ring_alloc(rdev, pg_map, pages, type,
> -				    BNXT_QPLIB_CREQE_MAX_CNT - 1,
> -				    ridx, &rdev->rcfw.creq_ring_id);
> +	rattr.dma_arr = rdev->rcfw.creq.pbl[PBL_LVL_0].pg_map_arr;
> +	rattr.pages = rdev->rcfw.creq.pbl[rdev->rcfw.creq.level].pg_count;
> +	rattr.type = type;
> +	rattr.mode = RING_ALLOC_REQ_INT_MODE_MSIX;
> +	rattr.depth = BNXT_QPLIB_CREQE_MAX_CNT - 1;
> +	rattr.lrid = rdev->msix_entries[BNXT_RE_AEQ_IDX].ring_idx;
> +	rc = bnxt_re_net_ring_alloc(rdev, &rattr, &rdev->rcfw.creq_ring_id);
>  	if (rc) {
>  		pr_err("Failed to allocate CREQ: %#x\n", rc);
>  		goto free_rcfw;
> --
> 1.8.3.1
>
Devesh Sharma Jan. 27, 2020, 7:40 a.m. UTC | #2
On Sun, Jan 26, 2020 at 7:59 PM Leon Romanovsky <leon@kernel.org> wrote:
>
> On Fri, Jan 24, 2020 at 12:52:42AM -0500, Devesh Sharma wrote:
> > Introducing a new attribute structure to reduce
> > the long list of arguments passed in bnxt_re_net_ring_alloc()
> > function.
> >
> > The caller of bnxt_re_net_ring_alloc should fill in
> > the list of attributes in bnxt_re_ring_attr structure
> > and then pass the pointer to the function.
> >
> > Signed-off-by: Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
> > Signed-off-by: Selvin Xavier <selvin.xavier@broadcom.com>
> > Signed-off-by: Devesh Sharma <devesh.sharma@broadcom.com>
> > ---
> >  drivers/infiniband/hw/bnxt_re/bnxt_re.h |  9 +++++
> >  drivers/infiniband/hw/bnxt_re/main.c    | 65 ++++++++++++++++++---------------
> >  2 files changed, 45 insertions(+), 29 deletions(-)
> >
> > diff --git a/drivers/infiniband/hw/bnxt_re/bnxt_re.h b/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > index 86274f4..c736e82 100644
> > --- a/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > +++ b/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > @@ -89,6 +89,15 @@
> >
> >  #define BNXT_RE_DEFAULT_ACK_DELAY    16
> >
> > +struct bnxt_re_ring_attr {
> > +     dma_addr_t      *dma_arr;
> > +     int             pages;
> > +     int             type;
> > +     u32             depth;
> > +     u32             lrid; /* Logical ring id */
> > +     u8              mode;
> > +};
> > +
> >  struct bnxt_re_work {
> >       struct work_struct      work;
> >       unsigned long           event;
> > diff --git a/drivers/infiniband/hw/bnxt_re/main.c b/drivers/infiniband/hw/bnxt_re/main.c
> > index a966c68..648a5ea 100644
> > --- a/drivers/infiniband/hw/bnxt_re/main.c
> > +++ b/drivers/infiniband/hw/bnxt_re/main.c
> > @@ -427,9 +427,9 @@ static int bnxt_re_net_ring_free(struct bnxt_re_dev *rdev,
> >       return rc;
> >  }
> >
> > -static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
> > -                               int pages, int type, u32 ring_mask,
> > -                               u32 map_index, u16 *fw_ring_id)
> > +static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev,
> > +                               struct bnxt_re_ring_attr *ring_attr,
> > +                               u16 *fw_ring_id)
> >  {
> >       struct bnxt_en_dev *en_dev = rdev->en_dev;
> >       struct hwrm_ring_alloc_input req = {0};
> > @@ -443,18 +443,18 @@ static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
> >       memset(&fw_msg, 0, sizeof(fw_msg));
> >       bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_RING_ALLOC, -1, -1);
> >       req.enables = 0;
> > -     req.page_tbl_addr =  cpu_to_le64(dma_arr[0]);
> > -     if (pages > 1) {
> > +     req.page_tbl_addr =  cpu_to_le64(ring_attr->dma_arr[0]);
> > +     if (ring_attr->pages > 1) {
> >               /* Page size is in log2 units */
> >               req.page_size = BNXT_PAGE_SHIFT;
> >               req.page_tbl_depth = 1;
> >       }
> >       req.fbo = 0;
> >       /* Association of ring index with doorbell index and MSIX number */
> > -     req.logical_id = cpu_to_le16(map_index);
> > -     req.length = cpu_to_le32(ring_mask + 1);
> > -     req.ring_type = type;
> > -     req.int_mode = RING_ALLOC_REQ_INT_MODE_MSIX;
> > +     req.logical_id = cpu_to_le16(ring_attr->lrid);
> > +     req.length = cpu_to_le32(ring_attr->depth + 1);
> > +     req.ring_type = ring_attr->type;
> > +     req.int_mode = ring_attr->mode;
> >       bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
> >                           sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
> >       rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
> > @@ -1006,12 +1006,13 @@ static void bnxt_re_free_res(struct bnxt_re_dev *rdev)
> >
> >  static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
> >  {
> > +     struct bnxt_qplib_ctx *qplib_ctx;
> > +     struct bnxt_re_ring_attr rattr;
> >       int num_vec_created = 0;
> > -     dma_addr_t *pg_map;
> >       int rc = 0, i;
> > -     int pages;
> >       u8 type;
> >
> > +     memset(&rattr, 0, sizeof(rattr));
>
> Initialize rattr to zero from the beginning and save call to memset.
I moved from static initialization to memset due to some sparse/smatch
warnings, rattr has a "pointer member".

>
> >       /* Configure and allocate resources for qplib */
> >       rdev->qplib_res.rcfw = &rdev->rcfw;
> >       rc = bnxt_qplib_get_dev_attr(&rdev->rcfw, &rdev->dev_attr,
> > @@ -1030,10 +1031,13 @@ static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
> >       if (rc)
> >               goto dealloc_res;
> >
> > +     qplib_ctx = &rdev->qplib_ctx;
> >       for (i = 0; i < rdev->num_msix - 1; i++) {
> > -             rdev->nq[i].res = &rdev->qplib_res;
> > -             rdev->nq[i].hwq.max_elements = BNXT_RE_MAX_CQ_COUNT +
> > -                     BNXT_RE_MAX_SRQC_COUNT + 2;
> > +             struct bnxt_qplib_nq *nq;
> > +
> > +             nq = &rdev->nq[i];
> > +             nq->hwq.max_elements = (qplib_ctx->cq_count +
> > +                                     qplib_ctx->srqc_count + 2);
> >               rc = bnxt_qplib_alloc_nq(&rdev->qplib_res, &rdev->nq[i]);
> >               if (rc) {
> >                       dev_err(rdev_to_dev(rdev), "Alloc Failed NQ%d rc:%#x",
> > @@ -1041,12 +1045,13 @@ static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
> >                       goto free_nq;
> >               }
> >               type = bnxt_qplib_get_ring_type(rdev->chip_ctx);
> > -             pg_map = rdev->nq[i].hwq.pbl[PBL_LVL_0].pg_map_arr;
> > -             pages = rdev->nq[i].hwq.pbl[rdev->nq[i].hwq.level].pg_count;
> > -             rc = bnxt_re_net_ring_alloc(rdev, pg_map, pages, type,
> > -                                         BNXT_QPLIB_NQE_MAX_CNT - 1,
> > -                                         rdev->msix_entries[i + 1].ring_idx,
> > -                                         &rdev->nq[i].ring_id);
> > +             rattr.dma_arr = nq->hwq.pbl[PBL_LVL_0].pg_map_arr;
> > +             rattr.pages = nq->hwq.pbl[rdev->nq[i].hwq.level].pg_count;
> > +             rattr.type = type;
> > +             rattr.mode = RING_ALLOC_REQ_INT_MODE_MSIX;
> > +             rattr.depth = BNXT_QPLIB_NQE_MAX_CNT - 1;
> > +             rattr.lrid = rdev->msix_entries[i + 1].ring_idx;
> > +             rc = bnxt_re_net_ring_alloc(rdev, &rattr, &nq->ring_id);
> >               if (rc) {
> >                       dev_err(rdev_to_dev(rdev),
> >                               "Failed to allocate NQ fw id with rc = 0x%x",
> > @@ -1371,10 +1376,10 @@ static void bnxt_re_worker(struct work_struct *work)
> >
> >  static int bnxt_re_ib_reg(struct bnxt_re_dev *rdev)
> >  {
> > -     dma_addr_t *pg_map;
> > -     u32 db_offt, ridx;
> > -     int pages, vid;
> > +     struct bnxt_re_ring_attr rattr;
> > +     u32 db_offt;
> >       bool locked;
> > +     int vid;
> >       u8 type;
> >       int rc;
> >
> > @@ -1383,6 +1388,7 @@ static int bnxt_re_ib_reg(struct bnxt_re_dev *rdev)
> >       locked = true;
> >
> >       /* Registered a new RoCE device instance to netdev */
> > +     memset(&rattr, 0, sizeof(rattr));
>
> ditto
>
> >       rc = bnxt_re_register_netdev(rdev);
> >       if (rc) {
> >               rtnl_unlock();
> > @@ -1422,12 +1428,13 @@ static int bnxt_re_ib_reg(struct bnxt_re_dev *rdev)
> >       }
> >
> >       type = bnxt_qplib_get_ring_type(rdev->chip_ctx);
> > -     pg_map = rdev->rcfw.creq.pbl[PBL_LVL_0].pg_map_arr;
> > -     pages = rdev->rcfw.creq.pbl[rdev->rcfw.creq.level].pg_count;
> > -     ridx = rdev->msix_entries[BNXT_RE_AEQ_IDX].ring_idx;
> > -     rc = bnxt_re_net_ring_alloc(rdev, pg_map, pages, type,
> > -                                 BNXT_QPLIB_CREQE_MAX_CNT - 1,
> > -                                 ridx, &rdev->rcfw.creq_ring_id);
> > +     rattr.dma_arr = rdev->rcfw.creq.pbl[PBL_LVL_0].pg_map_arr;
> > +     rattr.pages = rdev->rcfw.creq.pbl[rdev->rcfw.creq.level].pg_count;
> > +     rattr.type = type;
> > +     rattr.mode = RING_ALLOC_REQ_INT_MODE_MSIX;
> > +     rattr.depth = BNXT_QPLIB_CREQE_MAX_CNT - 1;
> > +     rattr.lrid = rdev->msix_entries[BNXT_RE_AEQ_IDX].ring_idx;
> > +     rc = bnxt_re_net_ring_alloc(rdev, &rattr, &rdev->rcfw.creq_ring_id);
> >       if (rc) {
> >               pr_err("Failed to allocate CREQ: %#x\n", rc);
> >               goto free_rcfw;
> > --
> > 1.8.3.1
> >
Leon Romanovsky Jan. 27, 2020, 8:02 a.m. UTC | #3
On Mon, Jan 27, 2020 at 01:10:10PM +0530, Devesh Sharma wrote:
> On Sun, Jan 26, 2020 at 7:59 PM Leon Romanovsky <leon@kernel.org> wrote:
> >
> > On Fri, Jan 24, 2020 at 12:52:42AM -0500, Devesh Sharma wrote:
> > > Introducing a new attribute structure to reduce
> > > the long list of arguments passed in bnxt_re_net_ring_alloc()
> > > function.
> > >
> > > The caller of bnxt_re_net_ring_alloc should fill in
> > > the list of attributes in bnxt_re_ring_attr structure
> > > and then pass the pointer to the function.
> > >
> > > Signed-off-by: Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
> > > Signed-off-by: Selvin Xavier <selvin.xavier@broadcom.com>
> > > Signed-off-by: Devesh Sharma <devesh.sharma@broadcom.com>
> > > ---
> > >  drivers/infiniband/hw/bnxt_re/bnxt_re.h |  9 +++++
> > >  drivers/infiniband/hw/bnxt_re/main.c    | 65 ++++++++++++++++++---------------
> > >  2 files changed, 45 insertions(+), 29 deletions(-)
> > >
> > > diff --git a/drivers/infiniband/hw/bnxt_re/bnxt_re.h b/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > > index 86274f4..c736e82 100644
> > > --- a/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > > +++ b/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > > @@ -89,6 +89,15 @@
> > >
> > >  #define BNXT_RE_DEFAULT_ACK_DELAY    16
> > >
> > > +struct bnxt_re_ring_attr {
> > > +     dma_addr_t      *dma_arr;
> > > +     int             pages;
> > > +     int             type;
> > > +     u32             depth;
> > > +     u32             lrid; /* Logical ring id */
> > > +     u8              mode;
> > > +};
> > > +
> > >  struct bnxt_re_work {
> > >       struct work_struct      work;
> > >       unsigned long           event;
> > > diff --git a/drivers/infiniband/hw/bnxt_re/main.c b/drivers/infiniband/hw/bnxt_re/main.c
> > > index a966c68..648a5ea 100644
> > > --- a/drivers/infiniband/hw/bnxt_re/main.c
> > > +++ b/drivers/infiniband/hw/bnxt_re/main.c
> > > @@ -427,9 +427,9 @@ static int bnxt_re_net_ring_free(struct bnxt_re_dev *rdev,
> > >       return rc;
> > >  }
> > >
> > > -static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
> > > -                               int pages, int type, u32 ring_mask,
> > > -                               u32 map_index, u16 *fw_ring_id)
> > > +static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev,
> > > +                               struct bnxt_re_ring_attr *ring_attr,
> > > +                               u16 *fw_ring_id)
> > >  {
> > >       struct bnxt_en_dev *en_dev = rdev->en_dev;
> > >       struct hwrm_ring_alloc_input req = {0};
> > > @@ -443,18 +443,18 @@ static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
> > >       memset(&fw_msg, 0, sizeof(fw_msg));
> > >       bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_RING_ALLOC, -1, -1);
> > >       req.enables = 0;
> > > -     req.page_tbl_addr =  cpu_to_le64(dma_arr[0]);
> > > -     if (pages > 1) {
> > > +     req.page_tbl_addr =  cpu_to_le64(ring_attr->dma_arr[0]);
> > > +     if (ring_attr->pages > 1) {
> > >               /* Page size is in log2 units */
> > >               req.page_size = BNXT_PAGE_SHIFT;
> > >               req.page_tbl_depth = 1;
> > >       }
> > >       req.fbo = 0;
> > >       /* Association of ring index with doorbell index and MSIX number */
> > > -     req.logical_id = cpu_to_le16(map_index);
> > > -     req.length = cpu_to_le32(ring_mask + 1);
> > > -     req.ring_type = type;
> > > -     req.int_mode = RING_ALLOC_REQ_INT_MODE_MSIX;
> > > +     req.logical_id = cpu_to_le16(ring_attr->lrid);
> > > +     req.length = cpu_to_le32(ring_attr->depth + 1);
> > > +     req.ring_type = ring_attr->type;
> > > +     req.int_mode = ring_attr->mode;
> > >       bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
> > >                           sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
> > >       rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
> > > @@ -1006,12 +1006,13 @@ static void bnxt_re_free_res(struct bnxt_re_dev *rdev)
> > >
> > >  static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
> > >  {
> > > +     struct bnxt_qplib_ctx *qplib_ctx;
> > > +     struct bnxt_re_ring_attr rattr;
> > >       int num_vec_created = 0;
> > > -     dma_addr_t *pg_map;
> > >       int rc = 0, i;
> > > -     int pages;
> > >       u8 type;
> > >
> > > +     memset(&rattr, 0, sizeof(rattr));
> >
> > Initialize rattr to zero from the beginning and save call to memset.
> I moved from static initialization to memset due to some sparse/smatch
> warnings, rattr has a "pointer member".

Can you share the error and tool version, because it is pretty common
way to initialize variables? Also "= {0}" would solve your checker
warning.

Thanks
Devesh Sharma Jan. 27, 2020, 11:25 a.m. UTC | #4
On Mon, Jan 27, 2020 at 1:32 PM Leon Romanovsky <leon@kernel.org> wrote:
>
> On Mon, Jan 27, 2020 at 01:10:10PM +0530, Devesh Sharma wrote:
> > On Sun, Jan 26, 2020 at 7:59 PM Leon Romanovsky <leon@kernel.org> wrote:
> > >
> > > On Fri, Jan 24, 2020 at 12:52:42AM -0500, Devesh Sharma wrote:
> > > > Introducing a new attribute structure to reduce
> > > > the long list of arguments passed in bnxt_re_net_ring_alloc()
> > > > function.
> > > >
> > > > The caller of bnxt_re_net_ring_alloc should fill in
> > > > the list of attributes in bnxt_re_ring_attr structure
> > > > and then pass the pointer to the function.
> > > >
> > > > Signed-off-by: Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
> > > > Signed-off-by: Selvin Xavier <selvin.xavier@broadcom.com>
> > > > Signed-off-by: Devesh Sharma <devesh.sharma@broadcom.com>
> > > > ---
> > > >  drivers/infiniband/hw/bnxt_re/bnxt_re.h |  9 +++++
> > > >  drivers/infiniband/hw/bnxt_re/main.c    | 65 ++++++++++++++++++---------------
> > > >  2 files changed, 45 insertions(+), 29 deletions(-)
> > > >
> > > > diff --git a/drivers/infiniband/hw/bnxt_re/bnxt_re.h b/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > > > index 86274f4..c736e82 100644
> > > > --- a/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > > > +++ b/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > > > @@ -89,6 +89,15 @@
> > > >
> > > >  #define BNXT_RE_DEFAULT_ACK_DELAY    16
> > > >
> > > > +struct bnxt_re_ring_attr {
> > > > +     dma_addr_t      *dma_arr;
> > > > +     int             pages;
> > > > +     int             type;
> > > > +     u32             depth;
> > > > +     u32             lrid; /* Logical ring id */
> > > > +     u8              mode;
> > > > +};
> > > > +
> > > >  struct bnxt_re_work {
> > > >       struct work_struct      work;
> > > >       unsigned long           event;
> > > > diff --git a/drivers/infiniband/hw/bnxt_re/main.c b/drivers/infiniband/hw/bnxt_re/main.c
> > > > index a966c68..648a5ea 100644
> > > > --- a/drivers/infiniband/hw/bnxt_re/main.c
> > > > +++ b/drivers/infiniband/hw/bnxt_re/main.c
> > > > @@ -427,9 +427,9 @@ static int bnxt_re_net_ring_free(struct bnxt_re_dev *rdev,
> > > >       return rc;
> > > >  }
> > > >
> > > > -static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
> > > > -                               int pages, int type, u32 ring_mask,
> > > > -                               u32 map_index, u16 *fw_ring_id)
> > > > +static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev,
> > > > +                               struct bnxt_re_ring_attr *ring_attr,
> > > > +                               u16 *fw_ring_id)
> > > >  {
> > > >       struct bnxt_en_dev *en_dev = rdev->en_dev;
> > > >       struct hwrm_ring_alloc_input req = {0};
> > > > @@ -443,18 +443,18 @@ static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
> > > >       memset(&fw_msg, 0, sizeof(fw_msg));
> > > >       bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_RING_ALLOC, -1, -1);
> > > >       req.enables = 0;
> > > > -     req.page_tbl_addr =  cpu_to_le64(dma_arr[0]);
> > > > -     if (pages > 1) {
> > > > +     req.page_tbl_addr =  cpu_to_le64(ring_attr->dma_arr[0]);
> > > > +     if (ring_attr->pages > 1) {
> > > >               /* Page size is in log2 units */
> > > >               req.page_size = BNXT_PAGE_SHIFT;
> > > >               req.page_tbl_depth = 1;
> > > >       }
> > > >       req.fbo = 0;
> > > >       /* Association of ring index with doorbell index and MSIX number */
> > > > -     req.logical_id = cpu_to_le16(map_index);
> > > > -     req.length = cpu_to_le32(ring_mask + 1);
> > > > -     req.ring_type = type;
> > > > -     req.int_mode = RING_ALLOC_REQ_INT_MODE_MSIX;
> > > > +     req.logical_id = cpu_to_le16(ring_attr->lrid);
> > > > +     req.length = cpu_to_le32(ring_attr->depth + 1);
> > > > +     req.ring_type = ring_attr->type;
> > > > +     req.int_mode = ring_attr->mode;
> > > >       bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
> > > >                           sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
> > > >       rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
> > > > @@ -1006,12 +1006,13 @@ static void bnxt_re_free_res(struct bnxt_re_dev *rdev)
> > > >
> > > >  static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
> > > >  {
> > > > +     struct bnxt_qplib_ctx *qplib_ctx;
> > > > +     struct bnxt_re_ring_attr rattr;
> > > >       int num_vec_created = 0;
> > > > -     dma_addr_t *pg_map;
> > > >       int rc = 0, i;
> > > > -     int pages;
> > > >       u8 type;
> > > >
> > > > +     memset(&rattr, 0, sizeof(rattr));
> > >
> > > Initialize rattr to zero from the beginning and save call to memset.
> > I moved from static initialization to memset due to some sparse/smatch
> > warnings, rattr has a "pointer member".
>
> Can you share the error and tool version, because it is pretty common
> way to initialize variables? Also "= {0}" would solve your checker
> warning.
I will have to duplicate it again to report the precise warning but
based on my memory, sparse or smatch was shouting about "pointer
converted to integer without cast"
I guess that was because rattr.dma_arr is a pointer and static
initialization was assigning value 0 while it should had been NULL. If
you insist I would send you exact warning msg and tool-version-number
soon.
>
> Thanks
Leon Romanovsky Jan. 27, 2020, 12:44 p.m. UTC | #5
On Mon, Jan 27, 2020 at 04:55:07PM +0530, Devesh Sharma wrote:
> On Mon, Jan 27, 2020 at 1:32 PM Leon Romanovsky <leon@kernel.org> wrote:
> >
> > On Mon, Jan 27, 2020 at 01:10:10PM +0530, Devesh Sharma wrote:
> > > On Sun, Jan 26, 2020 at 7:59 PM Leon Romanovsky <leon@kernel.org> wrote:
> > > >
> > > > On Fri, Jan 24, 2020 at 12:52:42AM -0500, Devesh Sharma wrote:
> > > > > Introducing a new attribute structure to reduce
> > > > > the long list of arguments passed in bnxt_re_net_ring_alloc()
> > > > > function.
> > > > >
> > > > > The caller of bnxt_re_net_ring_alloc should fill in
> > > > > the list of attributes in bnxt_re_ring_attr structure
> > > > > and then pass the pointer to the function.
> > > > >
> > > > > Signed-off-by: Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
> > > > > Signed-off-by: Selvin Xavier <selvin.xavier@broadcom.com>
> > > > > Signed-off-by: Devesh Sharma <devesh.sharma@broadcom.com>
> > > > > ---
> > > > >  drivers/infiniband/hw/bnxt_re/bnxt_re.h |  9 +++++
> > > > >  drivers/infiniband/hw/bnxt_re/main.c    | 65 ++++++++++++++++++---------------
> > > > >  2 files changed, 45 insertions(+), 29 deletions(-)
> > > > >
> > > > > diff --git a/drivers/infiniband/hw/bnxt_re/bnxt_re.h b/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > > > > index 86274f4..c736e82 100644
> > > > > --- a/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > > > > +++ b/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > > > > @@ -89,6 +89,15 @@
> > > > >
> > > > >  #define BNXT_RE_DEFAULT_ACK_DELAY    16
> > > > >
> > > > > +struct bnxt_re_ring_attr {
> > > > > +     dma_addr_t      *dma_arr;
> > > > > +     int             pages;
> > > > > +     int             type;
> > > > > +     u32             depth;
> > > > > +     u32             lrid; /* Logical ring id */
> > > > > +     u8              mode;
> > > > > +};
> > > > > +
> > > > >  struct bnxt_re_work {
> > > > >       struct work_struct      work;
> > > > >       unsigned long           event;
> > > > > diff --git a/drivers/infiniband/hw/bnxt_re/main.c b/drivers/infiniband/hw/bnxt_re/main.c
> > > > > index a966c68..648a5ea 100644
> > > > > --- a/drivers/infiniband/hw/bnxt_re/main.c
> > > > > +++ b/drivers/infiniband/hw/bnxt_re/main.c
> > > > > @@ -427,9 +427,9 @@ static int bnxt_re_net_ring_free(struct bnxt_re_dev *rdev,
> > > > >       return rc;
> > > > >  }
> > > > >
> > > > > -static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
> > > > > -                               int pages, int type, u32 ring_mask,
> > > > > -                               u32 map_index, u16 *fw_ring_id)
> > > > > +static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev,
> > > > > +                               struct bnxt_re_ring_attr *ring_attr,
> > > > > +                               u16 *fw_ring_id)
> > > > >  {
> > > > >       struct bnxt_en_dev *en_dev = rdev->en_dev;
> > > > >       struct hwrm_ring_alloc_input req = {0};
> > > > > @@ -443,18 +443,18 @@ static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
> > > > >       memset(&fw_msg, 0, sizeof(fw_msg));
> > > > >       bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_RING_ALLOC, -1, -1);
> > > > >       req.enables = 0;
> > > > > -     req.page_tbl_addr =  cpu_to_le64(dma_arr[0]);
> > > > > -     if (pages > 1) {
> > > > > +     req.page_tbl_addr =  cpu_to_le64(ring_attr->dma_arr[0]);
> > > > > +     if (ring_attr->pages > 1) {
> > > > >               /* Page size is in log2 units */
> > > > >               req.page_size = BNXT_PAGE_SHIFT;
> > > > >               req.page_tbl_depth = 1;
> > > > >       }
> > > > >       req.fbo = 0;
> > > > >       /* Association of ring index with doorbell index and MSIX number */
> > > > > -     req.logical_id = cpu_to_le16(map_index);
> > > > > -     req.length = cpu_to_le32(ring_mask + 1);
> > > > > -     req.ring_type = type;
> > > > > -     req.int_mode = RING_ALLOC_REQ_INT_MODE_MSIX;
> > > > > +     req.logical_id = cpu_to_le16(ring_attr->lrid);
> > > > > +     req.length = cpu_to_le32(ring_attr->depth + 1);
> > > > > +     req.ring_type = ring_attr->type;
> > > > > +     req.int_mode = ring_attr->mode;
> > > > >       bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
> > > > >                           sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
> > > > >       rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
> > > > > @@ -1006,12 +1006,13 @@ static void bnxt_re_free_res(struct bnxt_re_dev *rdev)
> > > > >
> > > > >  static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
> > > > >  {
> > > > > +     struct bnxt_qplib_ctx *qplib_ctx;
> > > > > +     struct bnxt_re_ring_attr rattr;
> > > > >       int num_vec_created = 0;
> > > > > -     dma_addr_t *pg_map;
> > > > >       int rc = 0, i;
> > > > > -     int pages;
> > > > >       u8 type;
> > > > >
> > > > > +     memset(&rattr, 0, sizeof(rattr));
> > > >
> > > > Initialize rattr to zero from the beginning and save call to memset.
> > > I moved from static initialization to memset due to some sparse/smatch
> > > warnings, rattr has a "pointer member".
> >
> > Can you share the error and tool version, because it is pretty common
> > way to initialize variables? Also "= {0}" would solve your checker
> > warning.
> I will have to duplicate it again to report the precise warning but
> based on my memory, sparse or smatch was shouting about "pointer
> converted to integer without cast"
> I guess that was because rattr.dma_arr is a pointer and static
> initialization was assigning value 0 while it should had been NULL. If
> you insist I would send you exact warning msg and tool-version-number
> soon.

Yes, please, because NULL is 0 and has special meaning in C standard.

> >
> > Thanks
Devesh Sharma Jan. 27, 2020, 2:14 p.m. UTC | #6
On Mon, Jan 27, 2020 at 6:14 PM Leon Romanovsky <leon@kernel.org> wrote:
>
> On Mon, Jan 27, 2020 at 04:55:07PM +0530, Devesh Sharma wrote:
> > On Mon, Jan 27, 2020 at 1:32 PM Leon Romanovsky <leon@kernel.org> wrote:
> > >
> > > On Mon, Jan 27, 2020 at 01:10:10PM +0530, Devesh Sharma wrote:
> > > > On Sun, Jan 26, 2020 at 7:59 PM Leon Romanovsky <leon@kernel.org> wrote:
> > > > >
> > > > > On Fri, Jan 24, 2020 at 12:52:42AM -0500, Devesh Sharma wrote:
> > > > > > Introducing a new attribute structure to reduce
> > > > > > the long list of arguments passed in bnxt_re_net_ring_alloc()
> > > > > > function.
> > > > > >
> > > > > > The caller of bnxt_re_net_ring_alloc should fill in
> > > > > > the list of attributes in bnxt_re_ring_attr structure
> > > > > > and then pass the pointer to the function.
> > > > > >
> > > > > > Signed-off-by: Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
> > > > > > Signed-off-by: Selvin Xavier <selvin.xavier@broadcom.com>
> > > > > > Signed-off-by: Devesh Sharma <devesh.sharma@broadcom.com>
> > > > > > ---
> > > > > >  drivers/infiniband/hw/bnxt_re/bnxt_re.h |  9 +++++
> > > > > >  drivers/infiniband/hw/bnxt_re/main.c    | 65 ++++++++++++++++++---------------
> > > > > >  2 files changed, 45 insertions(+), 29 deletions(-)
> > > > > >
> > > > > > diff --git a/drivers/infiniband/hw/bnxt_re/bnxt_re.h b/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > > > > > index 86274f4..c736e82 100644
> > > > > > --- a/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > > > > > +++ b/drivers/infiniband/hw/bnxt_re/bnxt_re.h
> > > > > > @@ -89,6 +89,15 @@
> > > > > >
> > > > > >  #define BNXT_RE_DEFAULT_ACK_DELAY    16
> > > > > >
> > > > > > +struct bnxt_re_ring_attr {
> > > > > > +     dma_addr_t      *dma_arr;
> > > > > > +     int             pages;
> > > > > > +     int             type;
> > > > > > +     u32             depth;
> > > > > > +     u32             lrid; /* Logical ring id */
> > > > > > +     u8              mode;
> > > > > > +};
> > > > > > +
> > > > > >  struct bnxt_re_work {
> > > > > >       struct work_struct      work;
> > > > > >       unsigned long           event;
> > > > > > diff --git a/drivers/infiniband/hw/bnxt_re/main.c b/drivers/infiniband/hw/bnxt_re/main.c
> > > > > > index a966c68..648a5ea 100644
> > > > > > --- a/drivers/infiniband/hw/bnxt_re/main.c
> > > > > > +++ b/drivers/infiniband/hw/bnxt_re/main.c
> > > > > > @@ -427,9 +427,9 @@ static int bnxt_re_net_ring_free(struct bnxt_re_dev *rdev,
> > > > > >       return rc;
> > > > > >  }
> > > > > >
> > > > > > -static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
> > > > > > -                               int pages, int type, u32 ring_mask,
> > > > > > -                               u32 map_index, u16 *fw_ring_id)
> > > > > > +static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev,
> > > > > > +                               struct bnxt_re_ring_attr *ring_attr,
> > > > > > +                               u16 *fw_ring_id)
> > > > > >  {
> > > > > >       struct bnxt_en_dev *en_dev = rdev->en_dev;
> > > > > >       struct hwrm_ring_alloc_input req = {0};
> > > > > > @@ -443,18 +443,18 @@ static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
> > > > > >       memset(&fw_msg, 0, sizeof(fw_msg));
> > > > > >       bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_RING_ALLOC, -1, -1);
> > > > > >       req.enables = 0;
> > > > > > -     req.page_tbl_addr =  cpu_to_le64(dma_arr[0]);
> > > > > > -     if (pages > 1) {
> > > > > > +     req.page_tbl_addr =  cpu_to_le64(ring_attr->dma_arr[0]);
> > > > > > +     if (ring_attr->pages > 1) {
> > > > > >               /* Page size is in log2 units */
> > > > > >               req.page_size = BNXT_PAGE_SHIFT;
> > > > > >               req.page_tbl_depth = 1;
> > > > > >       }
> > > > > >       req.fbo = 0;
> > > > > >       /* Association of ring index with doorbell index and MSIX number */
> > > > > > -     req.logical_id = cpu_to_le16(map_index);
> > > > > > -     req.length = cpu_to_le32(ring_mask + 1);
> > > > > > -     req.ring_type = type;
> > > > > > -     req.int_mode = RING_ALLOC_REQ_INT_MODE_MSIX;
> > > > > > +     req.logical_id = cpu_to_le16(ring_attr->lrid);
> > > > > > +     req.length = cpu_to_le32(ring_attr->depth + 1);
> > > > > > +     req.ring_type = ring_attr->type;
> > > > > > +     req.int_mode = ring_attr->mode;
> > > > > >       bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
> > > > > >                           sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
> > > > > >       rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
> > > > > > @@ -1006,12 +1006,13 @@ static void bnxt_re_free_res(struct bnxt_re_dev *rdev)
> > > > > >
> > > > > >  static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
> > > > > >  {
> > > > > > +     struct bnxt_qplib_ctx *qplib_ctx;
> > > > > > +     struct bnxt_re_ring_attr rattr;
> > > > > >       int num_vec_created = 0;
> > > > > > -     dma_addr_t *pg_map;
> > > > > >       int rc = 0, i;
> > > > > > -     int pages;
> > > > > >       u8 type;
> > > > > >
> > > > > > +     memset(&rattr, 0, sizeof(rattr));
> > > > >
> > > > > Initialize rattr to zero from the beginning and save call to memset.
> > > > I moved from static initialization to memset due to some sparse/smatch
> > > > warnings, rattr has a "pointer member".
> > >
> > > Can you share the error and tool version, because it is pretty common
> > > way to initialize variables? Also "= {0}" would solve your checker
> > > warning.
> > I will have to duplicate it again to report the precise warning but
> > based on my memory, sparse or smatch was shouting about "pointer
> > converted to integer without cast"
> > I guess that was because rattr.dma_arr is a pointer and static
> > initialization was assigning value 0 while it should had been NULL. If
> > you insist I would send you exact warning msg and tool-version-number
> > soon.
>
> Yes, please, because NULL is 0 and has special meaning in C standard.
This is what sparse warns about:
make C=2 CHECK="/data2/upstream/tools/sparse/sparse"
CF="-D__CHECK_ENDIAN__" drivers/infiniband/hw/bnxt_re/
  CHECK   drivers/infiniband/hw/bnxt_re/main.c
drivers/infiniband/hw/bnxt_re/main.c:1010:43: warning: Using plain
integer as NULL pointer

sparse version used:
v0.6.1-131-g22978b6b
>
> > >
> > > Thanks
Jason Gunthorpe Jan. 28, 2020, 12:35 a.m. UTC | #7
On Mon, Jan 27, 2020 at 01:10:10PM +0530, Devesh Sharma wrote:
> > >  static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
> > >  {
> > > +     struct bnxt_qplib_ctx *qplib_ctx;
> > > +     struct bnxt_re_ring_attr rattr;
> > >       int num_vec_created = 0;
> > > -     dma_addr_t *pg_map;
> > >       int rc = 0, i;
> > > -     int pages;
> > >       u8 type;
> > >
> > > +     memset(&rattr, 0, sizeof(rattr));
> >
> > Initialize rattr to zero from the beginning and save call to memset.
> I moved from static initialization to memset due to some sparse/smatch
> warnings, rattr has a "pointer member".

That is why you need to use = {} not the weird '= {0}' version

0 initializes the first member to zero and default initializes the rest
which doesn't work properly if the first member is not an integral
value.

Jason
Devesh Sharma Jan. 28, 2020, 2:43 a.m. UTC | #8
On Tue, Jan 28, 2020 at 6:05 AM Jason Gunthorpe <jgg@mellanox.com> wrote:
>
> On Mon, Jan 27, 2020 at 01:10:10PM +0530, Devesh Sharma wrote:
> > > >  static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
> > > >  {
> > > > +     struct bnxt_qplib_ctx *qplib_ctx;
> > > > +     struct bnxt_re_ring_attr rattr;
> > > >       int num_vec_created = 0;
> > > > -     dma_addr_t *pg_map;
> > > >       int rc = 0, i;
> > > > -     int pages;
> > > >       u8 type;
> > > >
> > > > +     memset(&rattr, 0, sizeof(rattr));
> > >
> > > Initialize rattr to zero from the beginning and save call to memset.
> > I moved from static initialization to memset due to some sparse/smatch
> > warnings, rattr has a "pointer member".
>
> That is why you need to use = {} not the weird '= {0}' version
>
> 0 initializes the first member to zero and default initializes the rest
> which doesn't work properly if the first member is not an integral
> value.
>
So should I remove memset(s) in v2?
> Jason
Jason Gunthorpe Jan. 28, 2020, 6:09 p.m. UTC | #9
On Mon, Jan 27, 2020 at 07:44:43PM +0530, Devesh Sharma wrote:
> > > I will have to duplicate it again to report the precise warning but
> > > based on my memory, sparse or smatch was shouting about "pointer
> > > converted to integer without cast"
> > > I guess that was because rattr.dma_arr is a pointer and static
> > > initialization was assigning value 0 while it should had been NULL. If
> > > you insist I would send you exact warning msg and tool-version-number
> > > soon.
> >
> > Yes, please, because NULL is 0 and has special meaning in C standard.
> This is what sparse warns about:
> make C=2 CHECK="/data2/upstream/tools/sparse/sparse"
> CF="-D__CHECK_ENDIAN__" drivers/infiniband/hw/bnxt_re/
>   CHECK   drivers/infiniband/hw/bnxt_re/main.c
> drivers/infiniband/hw/bnxt_re/main.c:1010:43: warning: Using plain
> integer as NULL pointer

Yes, this is entirely expected, you should not use the {0} pattern, it
is not reliable. '= {}' is preferred.

Jason
Jason Gunthorpe Jan. 28, 2020, 6:09 p.m. UTC | #10
On Tue, Jan 28, 2020 at 08:13:31AM +0530, Devesh Sharma wrote:
> On Tue, Jan 28, 2020 at 6:05 AM Jason Gunthorpe <jgg@mellanox.com> wrote:
> >
> > On Mon, Jan 27, 2020 at 01:10:10PM +0530, Devesh Sharma wrote:
> > > > >  static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
> > > > >  {
> > > > > +     struct bnxt_qplib_ctx *qplib_ctx;
> > > > > +     struct bnxt_re_ring_attr rattr;
> > > > >       int num_vec_created = 0;
> > > > > -     dma_addr_t *pg_map;
> > > > >       int rc = 0, i;
> > > > > -     int pages;
> > > > >       u8 type;
> > > > >
> > > > > +     memset(&rattr, 0, sizeof(rattr));
> > > >
> > > > Initialize rattr to zero from the beginning and save call to memset.
> > > I moved from static initialization to memset due to some sparse/smatch
> > > warnings, rattr has a "pointer member".
> >
> > That is why you need to use = {} not the weird '= {0}' version
> >
> > 0 initializes the first member to zero and default initializes the rest
> > which doesn't work properly if the first member is not an integral
> > value.

> So should I remove memset(s) in v2?

I would

Jason
Devesh Sharma Jan. 29, 2020, 8:29 a.m. UTC | #11
On Tue, Jan 28, 2020 at 11:39 PM Jason Gunthorpe <jgg@mellanox.com> wrote:
>
> On Tue, Jan 28, 2020 at 08:13:31AM +0530, Devesh Sharma wrote:
> > On Tue, Jan 28, 2020 at 6:05 AM Jason Gunthorpe <jgg@mellanox.com> wrote:
> > >
> > > On Mon, Jan 27, 2020 at 01:10:10PM +0530, Devesh Sharma wrote:
> > > > > >  static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
> > > > > >  {
> > > > > > +     struct bnxt_qplib_ctx *qplib_ctx;
> > > > > > +     struct bnxt_re_ring_attr rattr;
> > > > > >       int num_vec_created = 0;
> > > > > > -     dma_addr_t *pg_map;
> > > > > >       int rc = 0, i;
> > > > > > -     int pages;
> > > > > >       u8 type;
> > > > > >
> > > > > > +     memset(&rattr, 0, sizeof(rattr));
> > > > >
> > > > > Initialize rattr to zero from the beginning and save call to memset.
> > > > I moved from static initialization to memset due to some sparse/smatch
> > > > warnings, rattr has a "pointer member".
> > >
> > > That is why you need to use = {} not the weird '= {0}' version
> > >
> > > 0 initializes the first member to zero and default initializes the rest
> > > which doesn't work properly if the first member is not an integral
> > > value.
>
> > So should I remove memset(s) in v2?
>
> I would
>
Doing it already :-)
> Jason
diff mbox series

Patch

diff --git a/drivers/infiniband/hw/bnxt_re/bnxt_re.h b/drivers/infiniband/hw/bnxt_re/bnxt_re.h
index 86274f4..c736e82 100644
--- a/drivers/infiniband/hw/bnxt_re/bnxt_re.h
+++ b/drivers/infiniband/hw/bnxt_re/bnxt_re.h
@@ -89,6 +89,15 @@ 
 
 #define BNXT_RE_DEFAULT_ACK_DELAY	16
 
+struct bnxt_re_ring_attr {
+	dma_addr_t	*dma_arr;
+	int		pages;
+	int		type;
+	u32		depth;
+	u32		lrid; /* Logical ring id */
+	u8		mode;
+};
+
 struct bnxt_re_work {
 	struct work_struct	work;
 	unsigned long		event;
diff --git a/drivers/infiniband/hw/bnxt_re/main.c b/drivers/infiniband/hw/bnxt_re/main.c
index a966c68..648a5ea 100644
--- a/drivers/infiniband/hw/bnxt_re/main.c
+++ b/drivers/infiniband/hw/bnxt_re/main.c
@@ -427,9 +427,9 @@  static int bnxt_re_net_ring_free(struct bnxt_re_dev *rdev,
 	return rc;
 }
 
-static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
-				  int pages, int type, u32 ring_mask,
-				  u32 map_index, u16 *fw_ring_id)
+static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev,
+				  struct bnxt_re_ring_attr *ring_attr,
+				  u16 *fw_ring_id)
 {
 	struct bnxt_en_dev *en_dev = rdev->en_dev;
 	struct hwrm_ring_alloc_input req = {0};
@@ -443,18 +443,18 @@  static int bnxt_re_net_ring_alloc(struct bnxt_re_dev *rdev, dma_addr_t *dma_arr,
 	memset(&fw_msg, 0, sizeof(fw_msg));
 	bnxt_re_init_hwrm_hdr(rdev, (void *)&req, HWRM_RING_ALLOC, -1, -1);
 	req.enables = 0;
-	req.page_tbl_addr =  cpu_to_le64(dma_arr[0]);
-	if (pages > 1) {
+	req.page_tbl_addr =  cpu_to_le64(ring_attr->dma_arr[0]);
+	if (ring_attr->pages > 1) {
 		/* Page size is in log2 units */
 		req.page_size = BNXT_PAGE_SHIFT;
 		req.page_tbl_depth = 1;
 	}
 	req.fbo = 0;
 	/* Association of ring index with doorbell index and MSIX number */
-	req.logical_id = cpu_to_le16(map_index);
-	req.length = cpu_to_le32(ring_mask + 1);
-	req.ring_type = type;
-	req.int_mode = RING_ALLOC_REQ_INT_MODE_MSIX;
+	req.logical_id = cpu_to_le16(ring_attr->lrid);
+	req.length = cpu_to_le32(ring_attr->depth + 1);
+	req.ring_type = ring_attr->type;
+	req.int_mode = ring_attr->mode;
 	bnxt_re_fill_fw_msg(&fw_msg, (void *)&req, sizeof(req), (void *)&resp,
 			    sizeof(resp), DFLT_HWRM_CMD_TIMEOUT);
 	rc = en_dev->en_ops->bnxt_send_fw_msg(en_dev, BNXT_ROCE_ULP, &fw_msg);
@@ -1006,12 +1006,13 @@  static void bnxt_re_free_res(struct bnxt_re_dev *rdev)
 
 static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
 {
+	struct bnxt_qplib_ctx *qplib_ctx;
+	struct bnxt_re_ring_attr rattr;
 	int num_vec_created = 0;
-	dma_addr_t *pg_map;
 	int rc = 0, i;
-	int pages;
 	u8 type;
 
+	memset(&rattr, 0, sizeof(rattr));
 	/* Configure and allocate resources for qplib */
 	rdev->qplib_res.rcfw = &rdev->rcfw;
 	rc = bnxt_qplib_get_dev_attr(&rdev->rcfw, &rdev->dev_attr,
@@ -1030,10 +1031,13 @@  static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
 	if (rc)
 		goto dealloc_res;
 
+	qplib_ctx = &rdev->qplib_ctx;
 	for (i = 0; i < rdev->num_msix - 1; i++) {
-		rdev->nq[i].res = &rdev->qplib_res;
-		rdev->nq[i].hwq.max_elements = BNXT_RE_MAX_CQ_COUNT +
-			BNXT_RE_MAX_SRQC_COUNT + 2;
+		struct bnxt_qplib_nq *nq;
+
+		nq = &rdev->nq[i];
+		nq->hwq.max_elements = (qplib_ctx->cq_count +
+					qplib_ctx->srqc_count + 2);
 		rc = bnxt_qplib_alloc_nq(&rdev->qplib_res, &rdev->nq[i]);
 		if (rc) {
 			dev_err(rdev_to_dev(rdev), "Alloc Failed NQ%d rc:%#x",
@@ -1041,12 +1045,13 @@  static int bnxt_re_alloc_res(struct bnxt_re_dev *rdev)
 			goto free_nq;
 		}
 		type = bnxt_qplib_get_ring_type(rdev->chip_ctx);
-		pg_map = rdev->nq[i].hwq.pbl[PBL_LVL_0].pg_map_arr;
-		pages = rdev->nq[i].hwq.pbl[rdev->nq[i].hwq.level].pg_count;
-		rc = bnxt_re_net_ring_alloc(rdev, pg_map, pages, type,
-					    BNXT_QPLIB_NQE_MAX_CNT - 1,
-					    rdev->msix_entries[i + 1].ring_idx,
-					    &rdev->nq[i].ring_id);
+		rattr.dma_arr = nq->hwq.pbl[PBL_LVL_0].pg_map_arr;
+		rattr.pages = nq->hwq.pbl[rdev->nq[i].hwq.level].pg_count;
+		rattr.type = type;
+		rattr.mode = RING_ALLOC_REQ_INT_MODE_MSIX;
+		rattr.depth = BNXT_QPLIB_NQE_MAX_CNT - 1;
+		rattr.lrid = rdev->msix_entries[i + 1].ring_idx;
+		rc = bnxt_re_net_ring_alloc(rdev, &rattr, &nq->ring_id);
 		if (rc) {
 			dev_err(rdev_to_dev(rdev),
 				"Failed to allocate NQ fw id with rc = 0x%x",
@@ -1371,10 +1376,10 @@  static void bnxt_re_worker(struct work_struct *work)
 
 static int bnxt_re_ib_reg(struct bnxt_re_dev *rdev)
 {
-	dma_addr_t *pg_map;
-	u32 db_offt, ridx;
-	int pages, vid;
+	struct bnxt_re_ring_attr rattr;
+	u32 db_offt;
 	bool locked;
+	int vid;
 	u8 type;
 	int rc;
 
@@ -1383,6 +1388,7 @@  static int bnxt_re_ib_reg(struct bnxt_re_dev *rdev)
 	locked = true;
 
 	/* Registered a new RoCE device instance to netdev */
+	memset(&rattr, 0, sizeof(rattr));
 	rc = bnxt_re_register_netdev(rdev);
 	if (rc) {
 		rtnl_unlock();
@@ -1422,12 +1428,13 @@  static int bnxt_re_ib_reg(struct bnxt_re_dev *rdev)
 	}
 
 	type = bnxt_qplib_get_ring_type(rdev->chip_ctx);
-	pg_map = rdev->rcfw.creq.pbl[PBL_LVL_0].pg_map_arr;
-	pages = rdev->rcfw.creq.pbl[rdev->rcfw.creq.level].pg_count;
-	ridx = rdev->msix_entries[BNXT_RE_AEQ_IDX].ring_idx;
-	rc = bnxt_re_net_ring_alloc(rdev, pg_map, pages, type,
-				    BNXT_QPLIB_CREQE_MAX_CNT - 1,
-				    ridx, &rdev->rcfw.creq_ring_id);
+	rattr.dma_arr = rdev->rcfw.creq.pbl[PBL_LVL_0].pg_map_arr;
+	rattr.pages = rdev->rcfw.creq.pbl[rdev->rcfw.creq.level].pg_count;
+	rattr.type = type;
+	rattr.mode = RING_ALLOC_REQ_INT_MODE_MSIX;
+	rattr.depth = BNXT_QPLIB_CREQE_MAX_CNT - 1;
+	rattr.lrid = rdev->msix_entries[BNXT_RE_AEQ_IDX].ring_idx;
+	rc = bnxt_re_net_ring_alloc(rdev, &rattr, &rdev->rcfw.creq_ring_id);
 	if (rc) {
 		pr_err("Failed to allocate CREQ: %#x\n", rc);
 		goto free_rcfw;