Commit ab5777d7 authored by Yuval Mintz's avatar Yuval Mintz Committed by David S. Miller

bnx2x: Get gso_segs from FW

Signed-off-by: default avatarYuval Mintz <yuvalmin@broadcom.com>
Signed-off-by: default avatarAriel Elior <ariele@broadcom.com>
Signed-off-by: default avatarEilon Greenstein <eilong@broadcom.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3c76feff
...@@ -451,7 +451,8 @@ static void bnx2x_tpa_start(struct bnx2x_fastpath *fp, u16 queue, ...@@ -451,7 +451,8 @@ static void bnx2x_tpa_start(struct bnx2x_fastpath *fp, u16 queue,
* Compute number of aggregated segments, and gso_type. * Compute number of aggregated segments, and gso_type.
*/ */
static void bnx2x_set_gro_params(struct sk_buff *skb, u16 parsing_flags, static void bnx2x_set_gro_params(struct sk_buff *skb, u16 parsing_flags,
u16 len_on_bd, unsigned int pkt_len) u16 len_on_bd, unsigned int pkt_len,
u16 num_of_coalesced_segs)
{ {
/* TPA aggregation won't have either IP options or TCP options /* TPA aggregation won't have either IP options or TCP options
* other than timestamp or IPv6 extension headers. * other than timestamp or IPv6 extension headers.
...@@ -480,8 +481,7 @@ static void bnx2x_set_gro_params(struct sk_buff *skb, u16 parsing_flags, ...@@ -480,8 +481,7 @@ static void bnx2x_set_gro_params(struct sk_buff *skb, u16 parsing_flags,
/* tcp_gro_complete() will copy NAPI_GRO_CB(skb)->count /* tcp_gro_complete() will copy NAPI_GRO_CB(skb)->count
* to skb_shinfo(skb)->gso_segs * to skb_shinfo(skb)->gso_segs
*/ */
NAPI_GRO_CB(skb)->count = DIV_ROUND_UP(pkt_len - hdrs_len, NAPI_GRO_CB(skb)->count = num_of_coalesced_segs;
skb_shinfo(skb)->gso_size);
} }
static int bnx2x_alloc_rx_sge(struct bnx2x *bp, static int bnx2x_alloc_rx_sge(struct bnx2x *bp,
...@@ -537,7 +537,8 @@ static int bnx2x_fill_frag_skb(struct bnx2x *bp, struct bnx2x_fastpath *fp, ...@@ -537,7 +537,8 @@ static int bnx2x_fill_frag_skb(struct bnx2x *bp, struct bnx2x_fastpath *fp,
/* This is needed in order to enable forwarding support */ /* This is needed in order to enable forwarding support */
if (frag_size) if (frag_size)
bnx2x_set_gro_params(skb, tpa_info->parsing_flags, len_on_bd, bnx2x_set_gro_params(skb, tpa_info->parsing_flags, len_on_bd,
le16_to_cpu(cqe->pkt_len)); le16_to_cpu(cqe->pkt_len),
le16_to_cpu(cqe->num_of_coalesced_segs));
#ifdef BNX2X_STOP_ON_ERROR #ifdef BNX2X_STOP_ON_ERROR
if (pages > min_t(u32, 8, MAX_SKB_FRAGS) * SGE_PAGES) { if (pages > min_t(u32, 8, MAX_SKB_FRAGS) * SGE_PAGES) {
......
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