From owner-cvs-src-old@FreeBSD.ORG Sat Mar 27 00:25:39 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4484F106566C for ; Sat, 27 Mar 2010 00:25:39 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 170B38FC14 for ; Sat, 27 Mar 2010 00:25:39 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o2R0PcHQ022483 for ; Sat, 27 Mar 2010 00:25:38 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o2R0Pc4H022482 for cvs-src-old@freebsd.org; Sat, 27 Mar 2010 00:25:38 GMT (envelope-from jfv@repoman.freebsd.org) Message-Id: <201003270025.o2R0Pc4H022482@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jfv@repoman.freebsd.org using -f From: Jack F Vogel Date: Sat, 27 Mar 2010 00:21:40 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD 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 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Mar 2010 00:25:39 -0000 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