Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ixgbe: Disable DROP_EN for Rx queues

82599 mistakenly enabled drop on Rx queues in the packet buffer. The
default mode should be store-and-forward from the FIFO.

Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Acked-by: Mallikarjuna R Chilakala <mallikarjuna.chilakala@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

PJ Waskiewicz and committed by
David S. Miller
40dcd79a d51019a4

-2
-2
drivers/net/ixgbe/ixgbe_main.c
··· 1679 1679 srrctl |= rx_ring->rx_buf_len >> 1680 1680 IXGBE_SRRCTL_BSIZEPKT_SHIFT; 1681 1681 } 1682 - if (adapter->hw.mac.type == ixgbe_mac_82599EB) 1683 - srrctl |= IXGBE_SRRCTL_DROP_EN; 1684 1682 1685 1683 IXGBE_WRITE_REG(&adapter->hw, IXGBE_SRRCTL(index), srrctl); 1686 1684 }