Commit a402dc44 authored by Zhu Yanjun's avatar Zhu Yanjun Committed by Doug Ledford

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: default avatarZhu Yanjun <yanjun.zhu@oracle.com>
Reviewed-by: default avatarYuval Shaia <yuval.shaia@oracle.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 9c96f3d4
...@@ -61,13 +61,12 @@ void rxe_av_from_attr(u8 port_num, struct rxe_av *av, ...@@ -61,13 +61,12 @@ void rxe_av_from_attr(u8 port_num, struct rxe_av *av,
av->port_num = port_num; 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; attr->type = RDMA_AH_ATTR_TYPE_ROCE;
memcpy(rdma_ah_retrieve_grh(attr), &av->grh, sizeof(av->grh)); memcpy(rdma_ah_retrieve_grh(attr), &av->grh, sizeof(av->grh));
rdma_ah_set_ah_flags(attr, IB_AH_GRH); rdma_ah_set_ah_flags(attr, IB_AH_GRH);
rdma_ah_set_port_num(attr, av->port_num); rdma_ah_set_port_num(attr, av->port_num);
return 0;
} }
int rxe_av_fill_ip_info(struct rxe_dev *rxe, int rxe_av_fill_ip_info(struct rxe_dev *rxe,
......
...@@ -41,7 +41,7 @@ int rxe_av_chk_attr(struct rxe_dev *rxe, struct rdma_ah_attr *attr); ...@@ -41,7 +41,7 @@ int rxe_av_chk_attr(struct rxe_dev *rxe, struct rdma_ah_attr *attr);
void rxe_av_from_attr(u8 port_num, struct rxe_av *av, void rxe_av_from_attr(u8 port_num, struct rxe_av *av,
struct rdma_ah_attr *attr); struct rdma_ah_attr *attr);
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);
int rxe_av_fill_ip_info(struct rxe_dev *rxe, int rxe_av_fill_ip_info(struct rxe_dev *rxe,
struct rxe_av *av, struct rxe_av *av,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment