diff options
author | Zhu Yanjun <yanjun.zhu@oracle.com> | 2018-01-31 12:06:59 +0100 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2018-01-31 22:32:10 +0100 |
commit | 316663c6bfeb08ff484fdb73dad9bb980f937e3e (patch) | |
tree | fc8e441aa2ae2f1778787f0dcc3a5baf9206ff08 /drivers/infiniband/sw/rxe/rxe_verbs.c | |
parent | IB/rxe: change the function rxe_av_fill_ip_info to void (diff) | |
download | linux-316663c6bfeb08ff484fdb73dad9bb980f937e3e.tar.xz linux-316663c6bfeb08ff484fdb73dad9bb980f937e3e.zip |
IB/rxe: remove redudant parameter in rxe_av_fill_ip_info
In the function rxe_av_fill_ip_info, the parameter rxe is not used.
So it is removed.
CC: Srinivas Eeda <srinivas.eeda@oracle.com>
CC: Junxiao Bi <junxiao.bi@oracle.com>
Signed-off-by: Zhu Yanjun <yanjun.zhu@oracle.com>
Reviewed-by: Leon Romanovsky <leonro@mellanox.com>
Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/sw/rxe/rxe_verbs.c')
-rw-r--r-- | drivers/infiniband/sw/rxe/rxe_verbs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/sw/rxe/rxe_verbs.c b/drivers/infiniband/sw/rxe/rxe_verbs.c index 48bf4ad1e9df..f4bab2cd0ec2 100644 --- a/drivers/infiniband/sw/rxe/rxe_verbs.c +++ b/drivers/infiniband/sw/rxe/rxe_verbs.c @@ -272,7 +272,7 @@ static int rxe_init_av(struct rxe_dev *rxe, struct rdma_ah_attr *attr, } rxe_av_from_attr(rdma_ah_get_port_num(attr), av, attr); - rxe_av_fill_ip_info(rxe, av, attr, &sgid_attr, &sgid); + rxe_av_fill_ip_info(av, attr, &sgid_attr, &sgid); if (sgid_attr.ndev) dev_put(sgid_attr.ndev); |