Commit 47b37475 authored by Roland Dreier's avatar Roland Dreier

IB/mlx4: Rename struct mlx4_lso_seg to mlx4_wqe_lso_seg

Make the struct name consistent with other WQE segment struct types
defined in <linux/mlx4/qp.h>.
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent 51f5f0ee
...@@ -1395,7 +1395,7 @@ static void __set_data_seg(struct mlx4_wqe_data_seg *dseg, struct ib_sge *sg) ...@@ -1395,7 +1395,7 @@ static void __set_data_seg(struct mlx4_wqe_data_seg *dseg, struct ib_sge *sg)
dseg->addr = cpu_to_be64(sg->addr); dseg->addr = cpu_to_be64(sg->addr);
} }
static int build_lso_seg(struct mlx4_lso_seg *wqe, struct ib_send_wr *wr, static int build_lso_seg(struct mlx4_wqe_lso_seg *wqe, struct ib_send_wr *wr,
struct mlx4_ib_qp *qp, unsigned *lso_seg_len) struct mlx4_ib_qp *qp, unsigned *lso_seg_len)
{ {
unsigned halign = ALIGN(sizeof *wqe + wr->wr.ud.hlen, 16); unsigned halign = ALIGN(sizeof *wqe + wr->wr.ud.hlen, 16);
......
...@@ -219,7 +219,7 @@ struct mlx4_wqe_datagram_seg { ...@@ -219,7 +219,7 @@ struct mlx4_wqe_datagram_seg {
__be32 reservd[2]; __be32 reservd[2];
}; };
struct mlx4_lso_seg { struct mlx4_wqe_lso_seg {
__be32 mss_hdr_size; __be32 mss_hdr_size;
__be32 header[0]; __be32 header[0];
}; };
......
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