diff options
author | Zhu Yanjun <yanjun.zhu@oracle.com> | 2018-01-31 06:06:56 -0500 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2018-01-31 16:32:10 -0500 |
commit | 9c96f3d4ddba81941ee4ba6cd352b53d2f896b2e (patch) | |
tree | 46968ba9dc1cf64df71b503949055b071cc17d44 /drivers/infiniband/sw/rxe/rxe_verbs.c | |
parent | ca3d9feee6a9c09ab6be73e89edc1b4884eb2bac (diff) | |
download | blackbird-op-linux-9c96f3d4ddba81941ee4ba6cd352b53d2f896b2e.tar.gz blackbird-op-linux-9c96f3d4ddba81941ee4ba6cd352b53d2f896b2e.zip |
IB/rxe: remove unnecessary parameter in rxe_av_to_attr
In the function rxe_av_to_attr, 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 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/infiniband/sw/rxe/rxe_verbs.c b/drivers/infiniband/sw/rxe/rxe_verbs.c index e15344148173..b2cc67b451eb 100644 --- a/drivers/infiniband/sw/rxe/rxe_verbs.c +++ b/drivers/infiniband/sw/rxe/rxe_verbs.c @@ -334,12 +334,11 @@ static int rxe_modify_ah(struct ib_ah *ibah, struct rdma_ah_attr *attr) static int rxe_query_ah(struct ib_ah *ibah, struct rdma_ah_attr *attr) { - struct rxe_dev *rxe = to_rdev(ibah->device); struct rxe_ah *ah = to_rah(ibah); memset(attr, 0, sizeof(*attr)); attr->type = ibah->type; - rxe_av_to_attr(rxe, &ah->av, attr); + rxe_av_to_attr(&ah->av, attr); return 0; } |