bnx2x: properly update skb when mtu > 1500
Since commit e52fcb2462
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
1 changed files with 11 additions and 11 deletions
|
@ -731,22 +731,22 @@ int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget)
|
|||
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…
Reference in a new issue