The branch main has been updated by jhb:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=6d018c93eaff7140a4800bf0c770993f810306ea

commit 6d018c93eaff7140a4800bf0c770993f810306ea
Author:     John Baldwin <[email protected]>
AuthorDate: 2022-04-09 00:25:13 +0000
Commit:     John Baldwin <[email protected]>
CommitDate: 2022-04-09 00:25:13 +0000

    mlx4: Remove unused variables.
    
    Reviewed by:    hselasky
    Differential Revision:  https://reviews.freebsd.org/D34826
---
 sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c | 4 ----
 sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c | 2 --
 2 files changed, 6 deletions(-)

diff --git a/sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c 
b/sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
index 87845ef1f17b..c4e9e2e600cd 100644
--- a/sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
+++ b/sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
@@ -180,7 +180,6 @@ int mlx4_ib_create_cq(struct ib_cq *ibcq, const struct 
ib_cq_init_attr *attr,
        struct mlx4_ib_dev *dev = to_mdev(ibdev);
        struct mlx4_ib_cq *cq = to_mcq(ibcq);
        struct mlx4_uar *uar;
-       void *buf_addr;
        int err;
        struct mlx4_ib_ucontext *context = rdma_udata_to_drv_context(
                udata, struct mlx4_ib_ucontext, ibucontext);
@@ -209,7 +208,6 @@ int mlx4_ib_create_cq(struct ib_cq *ibcq, const struct 
ib_cq_init_attr *attr,
                        goto err_cq;
                }
 
-               buf_addr = (void *)(unsigned long)ucmd.buf_addr;
                err = mlx4_ib_get_cq_umem(dev, udata, &cq->buf, &cq->umem,
                                          ucmd.buf_addr, entries);
                if (err)
@@ -234,8 +232,6 @@ int mlx4_ib_create_cq(struct ib_cq *ibcq, const struct 
ib_cq_init_attr *attr,
                if (err)
                        goto err_db;
 
-               buf_addr = &cq->buf.buf;
-
                uar = &dev->priv_uar;
        }
 
diff --git a/sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c 
b/sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
index 9bfdb83019ae..6742a1aeaf93 100644
--- a/sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
+++ b/sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
@@ -1284,7 +1284,6 @@ static int _mlx4_ib_destroy_qp(struct ib_qp *qp, struct 
ib_udata *udata)
 {
        struct mlx4_ib_dev *dev = to_mdev(qp->device);
        struct mlx4_ib_qp *mqp = to_mqp(qp);
-       struct mlx4_ib_pd *pd;
 
        if (is_qp0(dev, mqp))
                mlx4_CLOSE_PORT(dev->dev, mqp->port);
@@ -1298,7 +1297,6 @@ static int _mlx4_ib_destroy_qp(struct ib_qp *qp, struct 
ib_udata *udata)
        if (mqp->counter_index)
                mlx4_ib_free_qp_counter(dev, mqp);
 
-       pd = get_pd(mqp);
        destroy_qp_common(dev, mqp, udata);
 
        if (is_sqp(dev, mqp))

Reply via email to