diff options
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c index b16b694951b8..9685354e6b9d 100644 --- a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c +++ b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c | |||
@@ -497,15 +497,6 @@ static int ixgbevf_clean_rx_irq(struct ixgbevf_q_vector *q_vector, | |||
497 | total_rx_bytes += skb->len; | 497 | total_rx_bytes += skb->len; |
498 | total_rx_packets++; | 498 | total_rx_packets++; |
499 | 499 | ||
500 | /* | ||
501 | * Work around issue of some types of VM to VM loop back | ||
502 | * packets not getting split correctly | ||
503 | */ | ||
504 | if (staterr & IXGBE_RXD_STAT_LB) { | ||
505 | u32 header_fixup_len = skb_headlen(skb); | ||
506 | if (header_fixup_len < 14) | ||
507 | skb_push(skb, header_fixup_len); | ||
508 | } | ||
509 | skb->protocol = eth_type_trans(skb, rx_ring->netdev); | 500 | skb->protocol = eth_type_trans(skb, rx_ring->netdev); |
510 | 501 | ||
511 | /* Workaround hardware that can't do proper VEPA multicast | 502 | /* Workaround hardware that can't do proper VEPA multicast |