From owner-cvs-all@FreeBSD.ORG Tue Sep 4 02:31:35 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6755F16A41A; Tue, 4 Sep 2007 02:31:35 +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 5C37113C442; Tue, 4 Sep 2007 02:31:35 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l842VZWM070474; Tue, 4 Sep 2007 02:31:35 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from jfv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l842VZWi070473; Tue, 4 Sep 2007 02:31:35 GMT (envelope-from jfv) Message-Id: <200709040231.l842VZWi070473@repoman.freebsd.org> From: Jack F Vogel Date: Tue, 4 Sep 2007 02:31:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ixgbe ixgbe.c ixgbe.h ixgbe_82598.c ixgbe_api.c ixgbe_api.h ixgbe_common.c ixgbe_common.h ixgbe_osdep.h ixgbe_phy.c ixgbe_phy.h ixgbe_type.h src/sys/modules/ixgbe Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Sep 2007 02:31:35 -0000 jfv 2007-09-04 02:31:35 UTC FreeBSD src repository Modified files: sys/dev/ixgbe ixgbe.c ixgbe.h ixgbe_82598.c ixgbe_api.c ixgbe_api.h ixgbe_common.c ixgbe_common.h ixgbe_osdep.h ixgbe_phy.c ixgbe_phy.h ixgbe_type.h Added files: sys/modules/ixgbe Makefile Log: This is an update to the new Intel 10G 82598 driver. The first drop was Beta, this code is expected to be the release version. Note that this driver code will build in either 6.2 or 7. If you use the code in 6.2 you will not get TSO or MSI/X support but it will function in a legacy mode. Approved by: re Revision Changes Path 1.4 +427 -180 src/sys/dev/ixgbe/ixgbe.c 1.3 +38 -40 src/sys/dev/ixgbe/ixgbe.h 1.3 +325 -17 src/sys/dev/ixgbe/ixgbe_82598.c 1.3 +68 -8 src/sys/dev/ixgbe/ixgbe_api.c 1.3 +3 -0 src/sys/dev/ixgbe/ixgbe_api.h 1.3 +1 -3 src/sys/dev/ixgbe/ixgbe_common.c 1.3 +0 -0 src/sys/dev/ixgbe/ixgbe_common.h 1.3 +1 -1 src/sys/dev/ixgbe/ixgbe_osdep.h 1.3 +7 -184 src/sys/dev/ixgbe/ixgbe_phy.c 1.3 +0 -10 src/sys/dev/ixgbe/ixgbe_phy.h 1.3 +73 -33 src/sys/dev/ixgbe/ixgbe_type.h 1.1 +15 -0 src/sys/modules/ixgbe/Makefile (new)