Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Mar 2011 09:50:14 +0000 (UTC)
From:      Navdeep Parhar <np@FreeBSD.org>
To:        cvs-src-old@freebsd.org
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 ...
Message-ID:  <201103140953.p2E9r3EG000664@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201103140953.p2E9r3EG000664>