aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/sw/rxe/rxe_av.c
diff options
context:
space:
mode:
authorZhu Yanjun <yanjun.zhu@oracle.com>2018-01-31 06:06:57 -0500
committerDoug Ledford <dledford@redhat.com>2018-01-31 16:32:10 -0500
commita402dc445dd61968e29ccb0afb42cd0e26cef9bb (patch)
tree9842ad4c282dbc45517f7cb08ffdb9562d6b5b97 /drivers/infiniband/sw/rxe/rxe_av.c
parentIB/rxe: remove unnecessary parameter in rxe_av_to_attr (diff)
downloadlinux-dev-a402dc445dd61968e29ccb0afb42cd0e26cef9bb.tar.xz
linux-dev-a402dc445dd61968e29ccb0afb42cd0e26cef9bb.zip
IB/rxe: change the function to void from int
Since the function rxe_av_to_attr always return 0, the function type is changed to void. 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: Yuval Shaia <yuval.shaia@oracle.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/sw/rxe/rxe_av.c')
-rw-r--r--drivers/infiniband/sw/rxe/rxe_av.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/infiniband/sw/rxe/rxe_av.c b/drivers/infiniband/sw/rxe/rxe_av.c
index 26ed0696f562..9662a7749713 100644
--- a/drivers/infiniband/sw/rxe/rxe_av.c
+++ b/drivers/infiniband/sw/rxe/rxe_av.c
@@ -61,13 +61,12 @@ void rxe_av_from_attr(u8 port_num, struct rxe_av *av,
av->port_num = port_num;
}
-int rxe_av_to_attr(struct rxe_av *av, struct rdma_ah_attr *attr)
+void rxe_av_to_attr(struct rxe_av *av, struct rdma_ah_attr *attr)
{
attr->type = RDMA_AH_ATTR_TYPE_ROCE;
memcpy(rdma_ah_retrieve_grh(attr), &av->grh, sizeof(av->grh));
rdma_ah_set_ah_flags(attr, IB_AH_GRH);
rdma_ah_set_port_num(attr, av->port_num);
- return 0;
}
int rxe_av_fill_ip_info(struct rxe_dev *rxe,