projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e901acd
)
ixgbe: DCB 82598 devices, tx_idx and rx_idx swapped
author
John Fastabend
<john.r.fastabend@intel.com>
Tue, 26 Apr 2011 07:26:14 +0000
(07:26 +0000)
committer
Jeff Kirsher
<jeffrey.t.kirsher@intel.com>
Tue, 21 Jun 2011 08:20:40 +0000
(
01:20
-0700)
The tx_idx and rx_idx values are swapped on 82598 devices
with DCB enabled.
Signed-off-by: John Fastabend <john.r.fastabend@intel.com>
Tested-by: Ross Brattain <ross.b.brattain@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ixgbe/ixgbe_main.c
patch
|
blob
|
history
diff --git
a/drivers/net/ixgbe/ixgbe_main.c
b/drivers/net/ixgbe/ixgbe_main.c
index 3a88fb6e32e7856f318102e74c41d611ca09f331..f829d3614521e170b6740aff94a7642926eb0007 100644
(file)
--- a/
drivers/net/ixgbe/ixgbe_main.c
+++ b/
drivers/net/ixgbe/ixgbe_main.c
@@
-4636,8
+4636,8
@@
static void ixgbe_get_first_reg_idx(struct ixgbe_adapter *adapter, u8 tc,
switch (hw->mac.type) {
case ixgbe_mac_82598EB:
- *tx = tc <<
3
;
- *rx = tc <<
2
;
+ *tx = tc <<
2
;
+ *rx = tc <<
3
;
break;
case ixgbe_mac_82599EB:
case ixgbe_mac_X540: