diff options
author | jfv <jfv@FreeBSD.org> | 2010-11-26 22:46:32 +0000 |
---|---|---|
committer | jfv <jfv@FreeBSD.org> | 2010-11-26 22:46:32 +0000 |
commit | 48bbd73f9a053707dcc36c64c6f44045e8178dc3 (patch) | |
tree | e2b66ea0565164dc8a27eec1d115e996508a5c83 /sys/conf | |
parent | dfd9c1b97641876cc379f1deb217b1d89114b6ff (diff) | |
download | FreeBSD-src-48bbd73f9a053707dcc36c64c6f44045e8178dc3.zip FreeBSD-src-48bbd73f9a053707dcc36c64c6f44045e8178dc3.tar.gz |
Update ixgbe driver to verion 2.3.6
- This adds a VM SRIOV interface, ixv, it is however
transparent to the user, it links with the ixgbe.ko,
but when ixgbe is loaded in a virtualized guest with
SRIOV configured this will be detected.
- Sync shared code to latest
- Many bug fixes and improvements, thanks to everyone
who has been using the driver and reporting issues.
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/files | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/conf/files b/sys/conf/files index db3e538..b880c53 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -1252,12 +1252,18 @@ dev/ixgb/ixgb_ee.c optional ixgb dev/ixgb/ixgb_hw.c optional ixgb dev/ixgbe/ixgbe.c optional ixgbe inet \ compile-with "${NORMAL_C} -I$S/dev/ixgbe" +dev/ixgbe/ixv.c optional ixgbe inet \ + compile-with "${NORMAL_C} -I$S/dev/ixgbe" dev/ixgbe/ixgbe_phy.c optional ixgbe inet \ compile-with "${NORMAL_C} -I$S/dev/ixgbe" dev/ixgbe/ixgbe_api.c optional ixgbe inet \ compile-with "${NORMAL_C} -I$S/dev/ixgbe" dev/ixgbe/ixgbe_common.c optional ixgbe inet \ compile-with "${NORMAL_C} -I$S/dev/ixgbe" +dev/ixgbe/ixgbe_mbx.c optional ixgbe inet \ + compile-with "${NORMAL_C} -I$S/dev/ixgbe" +dev/ixgbe/ixgbe_vf.c optional ixgbe inet \ + compile-with "${NORMAL_C} -I$S/dev/ixgbe" dev/ixgbe/ixgbe_82598.c optional ixgbe inet \ compile-with "${NORMAL_C} -I$S/dev/ixgbe" dev/ixgbe/ixgbe_82599.c optional ixgbe inet \ |