Date: Tue, 28 Sep 2010 00:13:15 +0000 (UTC) From: Jack F Vogel <jfv@FreeBSD.org> To: cvs-src-old@freebsd.org Subject: cvs commit: src/sys/dev/e1000 e1000_82571.c e1000_82571.h e1000_82575.c e1000_82575.h e1000_api.c e1000_api.h e1000_defines.h e1000_hw.h e1000_ich8lan.c e1000_ich8lan.h e1000_mac.c e1000_nvm.c e1000_nvm.h e1000_phy.c e1000_phy.h ... Message-ID: <201009280013.o8S0Ddts015883@repoman.freebsd.org>
index | next in thread | raw e-mail
jfv 2010-09-28 00:13:15 UTC
FreeBSD src repository
Modified files:
sys/dev/e1000 e1000_82571.c e1000_82571.h e1000_82575.c
e1000_82575.h e1000_api.c e1000_api.h
e1000_defines.h e1000_hw.h
e1000_ich8lan.c e1000_ich8lan.h
e1000_mac.c e1000_nvm.c e1000_nvm.h
e1000_phy.c e1000_phy.h e1000_regs.h
if_em.c if_em.h if_igb.c if_igb.h
if_lem.c
Log:
SVN rev 213234 on 2010-09-28 00:13:15Z by jfv
Update code from Intel:
- Sync shared code with Intel internal
- New client chipset support added
- em driver - fixes to 82574, limit queues to 1 but use MSIX
- em driver - large changes in TX checksum offload and tso
code, thanks to yongari.
- some small changes for watchdog issues.
- igb driver - local timer watchdog code was missing locking
this and a couple other watchdog related fixes.
- bug in rx discard found by Andrew Boyer, check for null pointer
MFC: a week
Revision Changes Path
1.8 +218 -46 src/sys/dev/e1000/e1000_82571.c
1.2 +7 -1 src/sys/dev/e1000/e1000_82571.h
1.8 +146 -14 src/sys/dev/e1000/e1000_82575.c
1.9 +1 -0 src/sys/dev/e1000/e1000_82575.h
1.8 +40 -0 src/sys/dev/e1000/e1000_api.c
1.6 +3 -0 src/sys/dev/e1000/e1000_api.h
1.8 +37 -0 src/sys/dev/e1000/e1000_defines.h
1.9 +41 -28 src/sys/dev/e1000/e1000_hw.h
1.10 +702 -129 src/sys/dev/e1000/e1000_ich8lan.c
1.8 +40 -0 src/sys/dev/e1000/e1000_ich8lan.h
1.8 +10 -0 src/sys/dev/e1000/e1000_mac.c
1.4 +184 -2 src/sys/dev/e1000/e1000_nvm.c
1.3 +4 -1 src/sys/dev/e1000/e1000_nvm.h
1.8 +20 -2 src/sys/dev/e1000/e1000_phy.c
1.7 +2 -0 src/sys/dev/e1000/e1000_phy.h
1.9 +6 -0 src/sys/dev/e1000/e1000_regs.h
1.58 +320 -289 src/sys/dev/e1000/if_em.c
1.17 +5 -0 src/sys/dev/e1000/if_em.h
1.60 +31 -6 src/sys/dev/e1000/if_igb.c
1.16 +4 -16 src/sys/dev/e1000/if_igb.h
1.11 +2 -3 src/sys/dev/e1000/if_lem.c
help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201009280013.o8S0Ddts015883>
