From owner-cvs-src-old@FreeBSD.ORG Thu Jan 27 00:37:07 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 80F2B1065695 for ; Thu, 27 Jan 2011 00:37:07 +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 6DBB68FC1A for ; Thu, 27 Jan 2011 00:37:07 +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 p0R0b7O8079312 for ; Thu, 27 Jan 2011 00:37:07 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p0R0b7w0079311 for cvs-src-old@freebsd.org; Thu, 27 Jan 2011 00:37:07 GMT (envelope-from jfv@repoman.freebsd.org) Message-Id: <201101270037.p0R0b7w0079311@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, 27 Jan 2011 00:36:54 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8_2 Subject: cvs commit: src/sys/dev/ixgbe ixgbe.c ixgbe.h ixgbe_82599.c ixgbe_api.h ixgbe_common.c ixgbe_common.h ixgbe_mbx.c ixgbe_type.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: Thu, 27 Jan 2011 00:37:07 -0000 jfv 2011-01-27 00:36:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_8_2) sys/dev/ixgbe ixgbe.c ixgbe.h ixgbe_82599.c ixgbe_api.h ixgbe_common.c ixgbe_common.h ixgbe_mbx.c ixgbe_type.h Log: SVN rev 217917 on 2011-01-27 00:36:54Z by jfv MFC ixgbe cummulative patch from stable/8 217712 Fix a couple of incorrect variable names in the sysctl code. 217713 - Panic on the 82598 adapter due to reading FCOE registers that don't exit - Make phy detection dynamic so adapters that support multiple types of media can be properly identified by the interface layer - Performance patch to the flow director (ixgbe_atr) code - Fix intermittent data corruption on the 82599 - Add missing support code for buffer size and descriptors when doing jumbo frames, also add 16K cluster support. - Release RX lock when calling stack, this removes LOR problems. 217795 Remove TX_UNLOCK from the error path in local_timer, there is no LOCK 217796 Add missing case for Direct Attach 82598 in the dynamic phy detection 217797 Performance: don't run flow control shared code if nothing has changed Approved by: re (bz) Revision Changes Path 1.17.2.12.2.2 +143 -143 src/sys/dev/ixgbe/ixgbe.c 1.9.2.6.2.2 +1 -0 src/sys/dev/ixgbe/ixgbe.h 1.2.2.3.2.2 +121 -478 src/sys/dev/ixgbe/ixgbe_82599.c 1.8.2.3.2.2 +3 -31 src/sys/dev/ixgbe/ixgbe_api.h 1.8.2.3.2.2 +55 -6 src/sys/dev/ixgbe/ixgbe_common.c 1.7.2.3.2.2 +2 -0 src/sys/dev/ixgbe/ixgbe_common.h 1.1.2.2.2.2 +8 -1 src/sys/dev/ixgbe/ixgbe_mbx.c 1.8.2.3.2.2 +35 -9 src/sys/dev/ixgbe/ixgbe_type.h