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/modules/ixgbe | |
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/modules/ixgbe')
-rw-r--r-- | sys/modules/ixgbe/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/ixgbe/Makefile b/sys/modules/ixgbe/Makefile index 56c39ed..50efe65 100644 --- a/sys/modules/ixgbe/Makefile +++ b/sys/modules/ixgbe/Makefile @@ -2,9 +2,9 @@ .PATH: ${.CURDIR}/../../dev/ixgbe KMOD = ixgbe SRCS = device_if.h bus_if.h pci_if.h -SRCS += ixgbe.c +SRCS += ixgbe.c ixv.c # Shared source -SRCS += ixgbe_common.c ixgbe_api.c ixgbe_phy.c +SRCS += ixgbe_common.c ixgbe_api.c ixgbe_phy.c ixgbe_mbx.c ixgbe_vf.c SRCS += ixgbe_82599.c ixgbe_82598.c CFLAGS+= -I${.CURDIR}/../../dev/ixgbe -DSMP -DIXGBE_FDIR |