Module Name: src Committed By: msaitoh Date: Thu Sep 14 09:25:58 UTC 2017
Modified Files: src/sys/dev/pci/ixgbe: ixgbe_type.h ixgbe_vf.h Log Message: Quick hack to fix ixv(4)'s hardware counter. ixgbe_rx_checksum() passes "struct ixgbe_hw_stats *" even if its a virtual function. The layout between ixgbe_hw_stats and ixgbevf_hw_stats are different, so ixgbe_rx_checksum() wrote wrong area if a device is a virtual function. To fix this problem with small change, move the location of ipcs, ipcs_bad, l4cs and l4cs_bad of struct ixgbe(vf)_hw_stats to the same location at the biggining of the struct. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/sys/dev/pci/ixgbe/ixgbe_type.h cvs rdiff -u -r1.9 -r1.10 src/sys/dev/pci/ixgbe/ixgbe_vf.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.