1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Stupid cut and paste error on a stats struct member, thanks

to Ryan at Small Tree for finding this one.
This commit is contained in:
Jack F Vogel 2009-09-03 22:00:42 +00:00
parent 54fc657d59
commit 1219197b46
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=196798

View File

@ -4507,7 +4507,7 @@ ixgbe_update_stats_counters(struct adapter *adapter)
adapter->stats.lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
/* 82598 only has a counter in the high register */
adapter->stats.gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
adapter->stats.gorc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
adapter->stats.gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
adapter->stats.tor += IXGBE_READ_REG(hw, IXGBE_TORH);
}