Date: Sat, 27 Mar 2010 00:21:40 +0000 (UTC) From: Jack F Vogel <jfv@FreeBSD.org> To: cvs-src-old@freebsd.org Subject: cvs commit: src/sys/dev/ixgbe LICENSE ixgbe.c ixgbe.h ixgbe_82598.c ixgbe_82599.c ixgbe_api.c ixgbe_api.h ixgbe_common.c ixgbe_phy.c ixgbe_phy.h ixgbe_type.h src/sys/modules/ixgbe Makefile Message-ID: <201003270025.o2R0Pc4H022482@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
jfv 2010-03-27 00:21:40 UTC
FreeBSD src repository
Modified files:
sys/dev/ixgbe LICENSE ixgbe.c ixgbe.h ixgbe_82598.c
ixgbe_82599.c ixgbe_api.c ixgbe_api.h
ixgbe_common.c ixgbe_phy.c ixgbe_phy.h
ixgbe_type.h
sys/modules/ixgbe Makefile
Log:
SVN rev 205720 on 2010-03-27 00:21:40Z by jfv
Update the driver to Intel version 2.1.6
- add some new hardware support for 82599
- Big change to interrupt architecture, it now
uses a queue which contains an RX/TX pair as
the recipient of the interrupt. This will reduce
overall system interrupts/msix usage.
- Improved RX mbuf handling: the old get_buf routine
is no longer synchronized with rxeof, this allows
the elimination of packet discards due to mbuf
allocation failure.
- Much simplified and improved AIM code, it now
happens in the queue interrupt context and takes
into account both the traffic on the RX AND TX
side.
- variety of small tweaks, like ring size, that have
been seen as performance improvements.
- Thanks to those that provided feedback or suggested
changes, I hope I've caught all of them.
Revision Changes Path
1.4 +1 -1 src/sys/dev/ixgbe/LICENSE
1.26 +551 -891 src/sys/dev/ixgbe/ixgbe.c
1.11 +84 -78 src/sys/dev/ixgbe/ixgbe.h
1.10 +67 -17 src/sys/dev/ixgbe/ixgbe_82598.c
1.4 +136 -22 src/sys/dev/ixgbe/ixgbe_82599.c
1.10 +16 -1 src/sys/dev/ixgbe/ixgbe_api.c
1.10 +3 -1 src/sys/dev/ixgbe/ixgbe_api.h
1.10 +118 -39 src/sys/dev/ixgbe/ixgbe_common.c
1.10 +111 -21 src/sys/dev/ixgbe/ixgbe_phy.c
1.10 +9 -1 src/sys/dev/ixgbe/ixgbe_phy.h
1.10 +60 -20 src/sys/dev/ixgbe/ixgbe_type.h
1.7 +1 -1 src/sys/modules/ixgbe/Makefile
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201003270025.o2R0Pc4H022482>
