CVS commit: src/sys/dev/pci
Module Name:src Committed By: cegger Date: Tue Jul 20 09:17:24 UTC 2010 Modified Files: src/sys/dev/pci: if_age.c if_ale.c Log Message: PR kern/38871: Fix VLAN To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 src/sys/dev/pci/if_age.c cvs rdiff -u -r1.11 -r1.12 src/sys/dev/pci/if_ale.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/marvell
Module Name:src Committed By: kiyohara Date: Tue Jul 20 11:37:40 UTC 2010 Modified Files: src/sys/dev/marvell: marvellvar.h Log Message: Add MARVELL_TAG_MAX to enum marvell_tags. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/dev/marvell/marvellvar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/marvell
Module Name:src Committed By: kiyohara Date: Tue Jul 20 11:42:22 UTC 2010 Modified Files: src/sys/dev/marvell: gt.c Log Message: Add notes for remembrance' sake. This is information obtained looking for www.marvell.com. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/sys/dev/marvell/gt.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/marvell
Module Name:src Committed By: kiyohara Date: Tue Jul 20 11:48:00 UTC 2010 Modified Files: src/sys/dev/marvell: gtidmac.c Log Message: Fix information on the product with comment-out. This was obtained from the data sheet of Marvell. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/dev/marvell/gtidmac.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/marvell
Module Name:src Committed By: kiyohara Date: Tue Jul 20 11:50:18 UTC 2010 Modified Files: src/sys/dev/marvell: com_mv.c Log Message: Add some Kirkwood/Discovery Innovation products. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/dev/marvell/com_mv.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/marvell
Module Name:src Committed By: kiyohara Date: Tue Jul 20 11:56:47 UTC 2010 Modified Files: src/sys/dev/marvell: marvellreg.h Log Message: Add macro MARVELL_ORION_1_88F6183. Add some comments. Product ID of Discovery V maybe 0x6450. Product ID of Discovery VI maybe 0x6490. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/dev/marvell/marvellreg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/marvell
Module Name:src Committed By: kiyohara Date: Tue Jul 20 12:01:33 UTC 2010 Modified Files: src/sys/dev/marvell: marvellreg.h Log Message: Remove some attribute macros. Its specifically for Orion. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/dev/marvell/marvellreg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/evbarm/conf
Module Name:src Committed By: kiyohara Date: Tue Jul 20 12:09:51 UTC 2010 Modified Files: src/sys/arch/evbarm/conf: OVERO Log Message: Remove unexist device(omapnand0). To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbarm/conf/OVERO Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/evbarm/conf
Module Name:src Committed By: kiyohara Date: Tue Jul 20 12:13:18 UTC 2010 Modified Files: src/sys/arch/evbarm/conf: OVERO Log Message: Add CPPFLAGS like to BEAGLEBOAD. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbarm/conf/OVERO Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/evbarm/conf
Module Name:src Committed By: kiyohara Date: Tue Jul 20 12:14:17 UTC 2010 Modified Files: src/sys/arch/evbarm/conf: std.gumstix std.overo Log Message: Add options EVBARM_BOARDTYPE. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/arch/evbarm/conf/std.gumstix cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbarm/conf/std.overo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.sbin/puffs/rump_nfs
Module Name:src Committed By: pooka Date: Tue Jul 20 14:42:03 UTC 2010 Modified Files: src/usr.sbin/puffs/rump_nfs: Makefile Log Message: Remove unused LDADD lines. They need work to work, and if anyone ever does that work, they surely can come up with the LDADD line as well. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/puffs/rump_nfs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/hpcmips/tx
Module Name:src Committed By: tsutsui Date: Tue Jul 20 15:03:53 UTC 2010 Modified Files: src/sys/arch/hpcmips/tx: txcom.c Log Message: Replace callout(9) with softint(9) which is more appropriate there. Inspired by PR port-hpcmips/43472 and tested by Risto Sainio. To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 src/sys/arch/hpcmips/tx/txcom.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/hpcmips/dev
Module Name:src Committed By: tsutsui Date: Tue Jul 20 15:06:44 UTC 2010 Modified Files: src/sys/arch/hpcmips/dev: plumohci.c Log Message: Remove (possibly) unnecessary boundary arg from bus_space_alloc(9) for DMA shared memory. PR port-hpcmips/43473 by Risto Sainio. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/arch/hpcmips/dev/plumohci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/fs
Module Name:src Committed By: pooka Date: Tue Jul 20 15:09:32 UTC 2010 Modified Files: src/tests/fs: Makefile Log Message: common cannot be a TESTS_SUBDIR, since one of those without a test behind it confuses atf-run. change to SUBDIR as hinted by jmmv. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/tests/fs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [uebayasi-xip] src/sys/miscfs/genfs
Module Name:src Committed By: uebayasi Date: Tue Jul 20 15:43:48 UTC 2010 Modified Files: src/sys/miscfs/genfs [uebayasi-xip]: genfs_io.c Log Message: genfs_do_getpages_xip: Simplify code. To generate a diff of this commit: cvs rdiff -u -r1.36.2.16 -r1.36.2.17 src/sys/miscfs/genfs/genfs_io.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: christos Date: Tue Jul 20 16:39:28 UTC 2010 Modified Files: src/usr.bin/make: job.c Log Message: PR/43643: David A. Holland: dash prefix broken with make -j As the comment says in JobPrintJob set JOB_IGNERR with - commands. Fix whitespace so that the output is consistent, although there are two separate execution logic implementations (command.c, job.c) To generate a diff of this commit: cvs rdiff -u -r1.151 -r1.152 src/usr.bin/make/job.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/coda
Module Name:src Committed By: christos Date: Tue Jul 20 17:26:04 UTC 2010 Modified Files: src/sys/coda: coda.h coda_venus.c coda_vnops.c Log Message: Correct incomplete size checks for the coda ioctls. From Dan Rosenberg. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/sys/coda/coda.h cvs rdiff -u -r1.27 -r1.28 src/sys/coda/coda_venus.c cvs rdiff -u -r1.75 -r1.76 src/sys/coda/coda_vnops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/fs/common
Module Name:src Committed By: njoly Date: Tue Jul 20 17:44:01 UTC 2010 Modified Files: src/tests/fs/common: h_fsmacros.h Log Message: Update ATF_TC_FSADD macro use ATF cleanup function. And call xx_fstest_delfs() from here instead of test body. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/tests/fs/common/h_fsmacros.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/ic
Module Name:src Committed By: jakllsch Date: Tue Jul 20 18:50:48 UTC 2010 Modified Files: src/sys/dev/ic: ahcisata_core.c ahcisatareg.h ahcisatavar.h Log Message: Convert ahcisata(4) to C99 exact-width integer types. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/sys/dev/ic/ahcisata_core.c cvs rdiff -u -r1.5 -r1.6 src/sys/dev/ic/ahcisatareg.h \ src/sys/dev/ic/ahcisatavar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/ic
Module Name:src Committed By: jakllsch Date: Tue Jul 20 19:24:11 UTC 2010 Modified Files: src/sys/dev/ic: ahcisata_core.c ahcisatareg.h Log Message: Prepare ahcisata(4) to work with 64-bit bus_dma_tag_t. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 src/sys/dev/ic/ahcisata_core.c cvs rdiff -u -r1.6 -r1.7 src/sys/dev/ic/ahcisatareg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/usb
Module Name:src Committed By: drochner Date: Tue Jul 20 20:56:06 UTC 2010 Modified Files: src/sys/dev/usb: usb_subr.c Log Message: another iteration in the eternal device enumeration struggle: use a request of 64 bytes for the initial device descriptor fetch. This is what windows does, and I've seen USB device firmware which really depends on this. (sends 8 bytes if 64 are requested and the full descriptor which is more than NetBSD's USB_MAX_IPACKET otherwise) This is the world... To generate a diff of this commit: cvs rdiff -u -r1.171 -r1.172 src/sys/dev/usb/usb_subr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/amiga/dev
Module Name:src Committed By: jklos Date: Wed Jul 21 01:34:00 UTC 2010 Modified Files: src/sys/arch/amiga/dev: ioblix_zbus.c Log Message: Fix the port order so that port ttyC0 refers to port 1 on the IOBlix, ttyC1 to port 2, ttyC2 to port 3, and ttyC3 to port 4. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/sys/arch/amiga/dev/ioblix_zbus.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/external/bsd/drm/conf
Module Name:src Committed By: mrg Date: Wed Jul 21 03:14:32 UTC 2010 Modified Files: src/sys/external/bsd/drm/conf: files.drm Log Message: also make radeondrm depend upon firmload, not just r128drm. should fix kern/43646 from kre. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/external/bsd/drm/conf/files.drm Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/fs/puffs/h_dtfs
Module Name:src Committed By: pooka Date: Wed Jul 21 06:58:26 UTC 2010 Modified Files: src/tests/fs/puffs/h_dtfs: dtfs.c dtfs_vnops.c Log Message: support pathconf (more or less copypasted from ufs). for njoly's tests. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tests/fs/puffs/h_dtfs/dtfs.c cvs rdiff -u -r1.6 -r1.7 src/tests/fs/puffs/h_dtfs/dtfs_vnops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.