Date: Thu, 3 May 2007 23:05:35 -0500 From: Larry Rosenman <ler@lerctr.org> To: Jack F Vogel <jfv@FreeBSD.org> Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files kern.pre.mk src/sys/dev/em LICENSE README e1000_80003es2lan.c e1000_80003es2lan.h e1000_82540.c e1000_82541.c e1000_82541.h e1000_82542.c e1000_82543.c e1000_82543.h e1000_82571.c e1000_82571.h e1000_82575.c ... Message-ID: <BC7CD2FA-5873-4643-B4A1-9F8E0AEE209D@lerctr.org> In-Reply-To: <200705040000.l4400CtD088050@repoman.freebsd.org> References: <200705040000.l4400CtD088050@repoman.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --Apple-Mail-1-228356702 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Jack, I think somethings broke here: /usr/obj/usr/src/make.amd64/make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | MKDEP_CPP="cc -E" CC="cc" xargs mkdep -a -f .newdep -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -g -Wall - Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing- prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat- extensions -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/contrib/ altq -I/usr/src/sys/contrib/ipfilter -I/usr/src/sys/contrib/pf -I/usr/ src/sys/dev/ath -I/usr/src/sys/contrib/ngatm -I/usr/src/sys/dev/twa - I/usr/src/sys/dev/em -I/usr/src/sys/gnu/fs/xfs/FreeBSD -I/usr/src/sys/ gnu/fs/xfs/FreeBSD/support -I/usr/src/sys/gnu/fs/xfs -D_KERNEL - DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common - finline-limit=8000 --param inline-unit-growth=100 --param large- function-growth=1000 -fno-omit-frame-pointer -mcmodel=kernel -mno- red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft- float -fno-asynchronous-unwind-tables -ffreestanding cc: /usr/src/sys/dev/em/if_e1000.c: No such file or directory mkdep: compile failed *** Error code 1 Stop in /usr/obj/usr/src/sys/BORG. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. On May 3, 2007, at 7:00 PM, Jack F Vogel wrote: > jfv 2007-05-04 00:00:12 UTC > > FreeBSD src repository > > Modified files: > sys/conf files kern.pre.mk > sys/dev/em LICENSE README if_em.c if_em.h > sys/modules/em Makefile > Added files: > sys/dev/em e1000_80003es2lan.c e1000_80003es2lan.h > e1000_82540.c e1000_82541.c e1000_82541.h > e1000_82542.c e1000_82543.c e1000_82543.h > 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_mac.h e1000_manage.c > e1000_manage.h e1000_nvm.c e1000_nvm.h > e1000_osdep.h e1000_phy.c e1000_phy.h > e1000_regs.h > Removed files: > sys/dev/em if_em_hw.c if_em_hw.h if_em_osdep.h > Log: > Merge in the new driver (6.5.0) of Intel. This has a new > shared code infrastructure that is family specific and > modular. There is also support for our latest gigabit > nic, the 82575 that is MSI/X and multiqueue capable. > > The new shared code changes some interfaces to the core > code but testing at Intel has been going on for months, > it is fairly stable. > > I have attempted to be careful in retaining any fixes that > CURRENT had and we did not, I apologize in advance if any > thing gets clobbered, I'm sure I'll hear about it :) > > Approved by pdeuskar > > Revision Changes Path > 1.1199 +26 -2 src/sys/conf/files > 1.82 +3 -0 src/sys/conf/kern.pre.mk > 1.6 +28 -28 src/sys/dev/em/LICENSE > 1.14 +81 -37 src/sys/dev/em/README > 1.1 +1383 -0 src/sys/dev/em/e1000_80003es2lan.c (new) > 1.1 +96 -0 src/sys/dev/em/e1000_80003es2lan.h (new) > 1.1 +677 -0 src/sys/dev/em/e1000_82540.c (new) > 1.1 +1312 -0 src/sys/dev/em/e1000_82541.c (new) > 1.1 +93 -0 src/sys/dev/em/e1000_82541.h (new) > 1.1 +558 -0 src/sys/dev/em/e1000_82542.c (new) > 1.1 +1650 -0 src/sys/dev/em/e1000_82543.c (new) > 1.1 +52 -0 src/sys/dev/em/e1000_82543.h (new) > 1.1 +1340 -0 src/sys/dev/em/e1000_82571.c (new) > 1.1 +49 -0 src/sys/dev/em/e1000_82571.h (new) > 1.1 +1528 -0 src/sys/dev/em/e1000_82575.c (new) > 1.1 +284 -0 src/sys/dev/em/e1000_82575.h (new) > 1.1 +1213 -0 src/sys/dev/em/e1000_api.c (new) > 1.1 +163 -0 src/sys/dev/em/e1000_api.h (new) > 1.1 +1403 -0 src/sys/dev/em/e1000_defines.h (new) > 1.1 +724 -0 src/sys/dev/em/e1000_hw.h (new) > 1.1 +2482 -0 src/sys/dev/em/e1000_ich8lan.c (new) > 1.1 +117 -0 src/sys/dev/em/e1000_ich8lan.h (new) > 1.1 +1987 -0 src/sys/dev/em/e1000_mac.c (new) > 1.1 +93 -0 src/sys/dev/em/e1000_mac.h (new) > 1.1 +391 -0 src/sys/dev/em/e1000_manage.c (new) > 1.1 +90 -0 src/sys/dev/em/e1000_manage.h (new) > 1.1 +900 -0 src/sys/dev/em/e1000_nvm.c (new) > 1.1 +68 -0 src/sys/dev/em/e1000_nvm.h (new) > 1.1 +188 -0 src/sys/dev/em/e1000_osdep.h (new) > 1.1 +2022 -0 src/sys/dev/em/e1000_phy.c (new) > 1.1 +168 -0 src/sys/dev/em/e1000_phy.h (new) > 1.1 +455 -0 src/sys/dev/em/e1000_regs.h (new) > 1.172 +1620 -807 src/sys/dev/em/if_em.c > 1.58 +77 -80 src/sys/dev/em/if_em.h > 1.26 +0 -9154 src/sys/dev/em/if_em_hw.c (dead) > 1.26 +0 -3379 src/sys/dev/em/if_em_hw.h (dead) > 1.22 +0 -177 src/sys/dev/em/if_em_osdep.h (dead) > 1.6 +19 -5 src/sys/modules/em/Makefile > _______________________________________________ > cvs-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-all > To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" --Apple-Mail-1-228356702 content-type: application/pgp-signature; x-mac-type=70674453; name=PGP.sig content-description: This is a digitally signed message part content-disposition: inline; filename=PGP.sig content-transfer-encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (Darwin) iD8DBQFGOrEPrRNGhTxJvdYRApiGAJ9qUU0wxg9ahFili2ytRYDGCqcgvgCfSiLb P8yrh5sdcJSKV/20TqtC514= =5kue -----END PGP SIGNATURE----- --Apple-Mail-1-228356702--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?BC7CD2FA-5873-4643-B4A1-9F8E0AEE209D>