From owner-cvs-src-old@FreeBSD.ORG Fri Nov 26 22:47:05 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 76A40106566B for ; Fri, 26 Nov 2010 22:47:05 +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 466DC8FC13 for ; Fri, 26 Nov 2010 22:47:05 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id oAQMl5Tj011156 for ; Fri, 26 Nov 2010 22:47:05 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id oAQMl5tc011155 for cvs-src-old@freebsd.org; Fri, 26 Nov 2010 22:47:05 GMT (envelope-from jfv@repoman.freebsd.org) Message-Id: <201011262247.oAQMl5tc011155@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jfv@repoman.freebsd.org using -f From: Jack F Vogel Date: Fri, 26 Nov 2010 22:46:32 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/dev/ixgbe ixgbe.c ixgbe.h ixgbe_82598.c ixgbe_82599.c ixgbe_api.c ixgbe_api.h ixgbe_common.c ixgbe_common.h ixgbe_mbx.c ixgbe_mbx.h ixgbe_osdep.h ixgbe_phy.c ixgbe_phy.h ixgbe_type.h ixgbe_vf.c ixgbe_vf.h ixv.c ixv.h ... 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: Fri, 26 Nov 2010 22:47:05 -0000 jfv 2010-11-26 22:46:32 UTC FreeBSD src repository Modified files: sys/conf files sys/dev/ixgbe ixgbe.c ixgbe.h ixgbe_82598.c ixgbe_82599.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 sys/modules/ixgbe Makefile Added files: sys/dev/ixgbe ixgbe_mbx.c ixgbe_mbx.h ixgbe_vf.c ixgbe_vf.h ixv.c ixv.h Log: SVN rev 215911 on 2010-11-26 22:46:32Z by jfv 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. Revision Changes Path 1.1545 +6 -0 src/sys/conf/files 1.40 +182 -165 src/sys/dev/ixgbe/ixgbe.c 1.19 +13 -9 src/sys/dev/ixgbe/ixgbe.h 1.11 +89 -68 src/sys/dev/ixgbe/ixgbe_82598.c 1.5 +601 -520 src/sys/dev/ixgbe/ixgbe_82599.c 1.11 +88 -3 src/sys/dev/ixgbe/ixgbe_api.c 1.11 +38 -32 src/sys/dev/ixgbe/ixgbe_api.h 1.11 +756 -313 src/sys/dev/ixgbe/ixgbe_common.c 1.9 +9 -1 src/sys/dev/ixgbe/ixgbe_common.h 1.1 +743 -0 src/sys/dev/ixgbe/ixgbe_mbx.c (new) 1.1 +113 -0 src/sys/dev/ixgbe/ixgbe_mbx.h (new) 1.9 +3 -2 src/sys/dev/ixgbe/ixgbe_osdep.h 1.11 +105 -70 src/sys/dev/ixgbe/ixgbe_phy.c 1.11 +6 -3 src/sys/dev/ixgbe/ixgbe_phy.h 1.11 +175 -65 src/sys/dev/ixgbe/ixgbe_type.h 1.1 +495 -0 src/sys/dev/ixgbe/ixgbe_vf.c (new) 1.1 +113 -0 src/sys/dev/ixgbe/ixgbe_vf.h (new) 1.1 +3950 -0 src/sys/dev/ixgbe/ixv.c (new) 1.1 +414 -0 src/sys/dev/ixgbe/ixv.h (new) 1.9 +2 -2 src/sys/modules/ixgbe/Makefile