From owner-cvs-src-old@FreeBSD.ORG Mon Mar 14 09:53:04 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 2720C106564A for ; Mon, 14 Mar 2011 09:53:04 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EB5298FC0A for ; Mon, 14 Mar 2011 09:53:03 +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 p2E9r3jp000665 for ; Mon, 14 Mar 2011 09:53:03 GMT (envelope-from np@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p2E9r3EG000664 for cvs-src-old@freebsd.org; Mon, 14 Mar 2011 09:53:03 GMT (envelope-from np@repoman.freebsd.org) Message-Id: <201103140953.p2E9r3EG000664@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to np@repoman.freebsd.org using -f From: Navdeep Parhar Date: Mon, 14 Mar 2011 09:50:14 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/share/man/man4 Makefile altq.4 cxgbe.4 vlan.4 src/sys/conf NOTES files kern.pre.mk src/sys/dev/cxgbe adapter.h offload.h osdep.h t4_ioctl.h t4_main.c t4_sge.c src/sys/dev/cxgbe/common common.h t4_hw.c t4_hw.h t4_msg.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: Mon, 14 Mar 2011 09:53:04 -0000 np 2011-03-14 09:50:14 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) share/man/man4 Makefile altq.4 vlan.4 sys/conf NOTES files kern.pre.mk sys/modules Makefile usr.sbin/sysinstall devices.c Added files: (Branch: RELENG_8) share/man/man4 cxgbe.4 sys/dev/cxgbe adapter.h offload.h osdep.h t4_ioctl.h t4_main.c t4_sge.c sys/dev/cxgbe/common common.h t4_hw.c t4_hw.h t4_msg.h t4_regs.h t4_regs_values.h t4_tcb.h t4fw_interface.h sys/modules/cxgbe Makefile Log: SVN rev 219633 on 2011-03-14 09:50:14Z by np MFC cxgbe(4) and fixes. r218792: cxgbe(4) - NIC driver for Chelsio T4 (Terminator 4) based 10Gb/1Gb adapters. r219285: Fix incorrect assertion. r219286: Resume tx immediately in response to an SGE egress update from the hardware. r219287: Upgrade the firmware on the card automatically if a better version is available. Downgrade only for a major version mismatch. r219288: A txpkts work request should have a valid FID. r219289: Store the ifnet rather than the port_info in each txq and rxq struct. r219290: Tweaks for rx: - everything related to LRO should be in #ifdef INET blocks - reorder sge_iq's fields so that the most frequently used are all together - pull all rx code into t4_intr_data directly - let go of the ingress queue lock when passing up data - refill the freelist only if it is short of at least 32 buffers r219292: Calculate how many descriptors can be reclaimed before calling reclaim_tx_descs r219293: There is no need to hold an ingress queue's lock while processing its descriptors r219299: Be sure to stay within the bounds of the mod_str array when displaying the transceiver type. r219392: cxgbe shouldn't directly know of the UMA zones where network buffers come from. r219436: Display holdoff timers and packet counts as a list of numbers. Revision Changes Path 1.460.2.29 +1 -0 src/share/man/man4/Makefile 1.42.2.5 +1 -0 src/share/man/man4/altq.4 1.1.2.2 +167 -0 src/share/man/man4/cxgbe.4 (new) 1.53.2.6 +1 -0 src/share/man/man4/vlan.4 1.1553.2.21 +3 -0 src/sys/conf/NOTES 1.1459.2.55 +6 -0 src/sys/conf/files 1.107.2.4 +2 -2 src/sys/conf/kern.pre.mk 1.7.2.2 +585 -0 src/sys/dev/cxgbe/adapter.h (new) 1.2.2.2 +517 -0 src/sys/dev/cxgbe/common/common.h (new) 1.1.2.2 +4590 -0 src/sys/dev/cxgbe/common/t4_hw.c (new) 1.1.2.2 +185 -0 src/sys/dev/cxgbe/common/t4_hw.h (new) 1.1.2.2 +2138 -0 src/sys/dev/cxgbe/common/t4_msg.h (new) 1.1.2.2 +23972 -0 src/sys/dev/cxgbe/common/t4_regs.h (new) 1.1.2.2 +192 -0 src/sys/dev/cxgbe/common/t4_regs_values.h (new) 1.1.2.2 +753 -0 src/sys/dev/cxgbe/common/t4_tcb.h (new) 1.1.2.2 +5392 -0 src/sys/dev/cxgbe/common/t4fw_interface.h (new) 1.1.2.2 +86 -0 src/sys/dev/cxgbe/offload.h (new) 1.1.2.2 +153 -0 src/sys/dev/cxgbe/osdep.h (new) 1.1.2.2 +58 -0 src/sys/dev/cxgbe/t4_ioctl.h (new) 1.7.2.2 +2851 -0 src/sys/dev/cxgbe/t4_main.c (new) 1.8.2.2 +2446 -0 src/sys/dev/cxgbe/t4_sge.c (new) 1.623.2.30 +1 -0 src/sys/modules/Makefile 1.1.2.2 +16 -0 src/sys/modules/cxgbe/Makefile (new) 1.189.2.9 +1 -0 src/usr.sbin/sysinstall/devices.c