From owner-cvs-src-old@FreeBSD.ORG Thu Jun 2 00:35:16 2011 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 9EC991065678 for ; Thu, 2 Jun 2011 00:35:16 +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 8F9288FC13 for ; Thu, 2 Jun 2011 00:35:16 +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 p520ZGpZ097989 for ; Thu, 2 Jun 2011 00:35:16 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p520ZGFc097988 for cvs-src-old@freebsd.org; Thu, 2 Jun 2011 00:35:16 GMT (envelope-from jfv@repoman.freebsd.org) Message-Id: <201106020035.p520ZGFc097988@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jfv@repoman.freebsd.org using -f From: Jack F Vogel Date: Thu, 2 Jun 2011 00:34:57 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ixgbe LICENSE README ixgbe.c ixv.c 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: Thu, 02 Jun 2011 00:35:16 -0000 jfv 2011-06-02 00:34:57 UTC FreeBSD src repository Modified files: sys/dev/ixgbe LICENSE README ixgbe.c ixv.c Log: SVN rev 222588 on 2011-06-02 00:34:57Z by jfv First off: update the driver README, the old one was horribly crusty, and this still isn't perfect, but its at least a bit more recent. Secondly, a few improvements to the driver from Andrew Boyer, support hint to allow devices to not attach, add VLAN_HWTSO capability so vlans can use TSO, fix in the interrupt handler to make sure the stack TX queue is processed. Oh, and also make sure IPv6 does not cause a re-init in the ioctl routine. Thanks for your efforts Andrew! Thanks to Claudio Jeker for noticing the ixgbe_xmit() routine was not correctly swapping the dma map from the first to the last descriptor in a multi-descriptor transmission, corrected this. Revision Changes Path 1.5 +1 -1 src/sys/dev/ixgbe/LICENSE 1.3 +155 -112 src/sys/dev/ixgbe/README 1.52 +53 -26 src/sys/dev/ixgbe/ixgbe.c 1.3 +48 -10 src/sys/dev/ixgbe/ixv.c