bnx2x: properly update skb when mtu > 1500
Since commit e52fcb2462ac484e6dd6e68869536609f0216938 newly allocated skb for small packets are not updated properly and dropped by stack. Signed-off-by: Dmitry Kravkov <dmitry@broadcom.com> Signed-off-by: Eilon Greenstein <eilong@broadcom.com> Acked-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
90b41a1cd4
commit
036d2df9b3
@ -731,22 +731,22 @@ reuse_rx:
|
||||
bnx2x_reuse_rx_data(fp, bd_cons, bd_prod);
|
||||
goto next_rx;
|
||||
}
|
||||
}
|
||||
|
||||
skb_put(skb, len);
|
||||
skb->protocol = eth_type_trans(skb, bp->dev);
|
||||
skb_put(skb, len);
|
||||
skb->protocol = eth_type_trans(skb, bp->dev);
|
||||
|
||||
/* Set Toeplitz hash for a none-LRO skb */
|
||||
skb->rxhash = bnx2x_get_rxhash(bp, cqe_fp);
|
||||
/* Set Toeplitz hash for a none-LRO skb */
|
||||
skb->rxhash = bnx2x_get_rxhash(bp, cqe_fp);
|
||||
|
||||
skb_checksum_none_assert(skb);
|
||||
skb_checksum_none_assert(skb);
|
||||
|
||||
if (bp->dev->features & NETIF_F_RXCSUM) {
|
||||
if (bp->dev->features & NETIF_F_RXCSUM) {
|
||||
|
||||
if (likely(BNX2X_RX_CSUM_OK(cqe)))
|
||||
skb->ip_summed = CHECKSUM_UNNECESSARY;
|
||||
else
|
||||
fp->eth_q_stats.hw_csum_err++;
|
||||
}
|
||||
if (likely(BNX2X_RX_CSUM_OK(cqe)))
|
||||
skb->ip_summed = CHECKSUM_UNNECESSARY;
|
||||
else
|
||||
fp->eth_q_stats.hw_csum_err++;
|
||||
}
|
||||
|
||||
skb_record_rx_queue(skb, fp->rx_queue);
|
||||
|
Loading…
x
Reference in New Issue
Block a user