OSDN Git Service

RDMA/mlx4: Annotate boolean arguments as bool and not int
authorLeon Romanovsky <leonro@mellanox.com>
Thu, 4 Jul 2019 13:09:36 +0000 (16:09 +0300)
committerJason Gunthorpe <jgg@mellanox.com>
Thu, 25 Jul 2019 17:08:29 +0000 (14:08 -0300)
Information provided by qp_has_rq() and used latter is boolean, so update
callers to proper type.

Link: https://lore.kernel.org/r/20190704130936.8705-3-leon@kernel.org
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/hw/mlx4/qp.c

index e409ada..bd4aa04 100644 (file)
@@ -325,7 +325,7 @@ static int send_wqe_overhead(enum mlx4_ib_qp_type type, u32 flags)
 }
 
 static int set_rq_size(struct mlx4_ib_dev *dev, struct ib_qp_cap *cap,
-                      bool is_user, int has_rq, struct mlx4_ib_qp *qp,
+                      bool is_user, bool has_rq, struct mlx4_ib_qp *qp,
                       u32 inl_recv_sz)
 {
        /* Sanity check RQ size before proceeding */
@@ -506,10 +506,10 @@ static void free_proxy_bufs(struct ib_device *dev, struct mlx4_ib_qp *qp)
        kfree(qp->sqp_proxy_rcv);
 }
 
-static int qp_has_rq(struct ib_qp_init_attr *attr)
+static bool qp_has_rq(struct ib_qp_init_attr *attr)
 {
        if (attr->qp_type == IB_QPT_XRC_INI || attr->qp_type == IB_QPT_XRC_TGT)
-               return 0;
+               return false;
 
        return !attr->srq;
 }
@@ -906,7 +906,7 @@ static int create_rq(struct ib_pd *pd, struct ib_qp_init_attr *init_attr,
        if (init_attr->create_flags & IB_QP_CREATE_SCATTER_FCS)
                qp->flags |= MLX4_IB_QP_SCATTER_FCS;
 
-       err = set_rq_size(dev, &init_attr->cap, true, 1, qp, qp->inl_recv_sz);
+       err = set_rq_size(dev, &init_attr->cap, true, true, qp, qp->inl_recv_sz);
        if (err)
                goto err;