CVS commit: src/sys
Module Name:src Committed By: msaitoh Date: Fri Aug 24 09:01:23 UTC 2012 Modified Files: src/sys/arch/amiga/dev: siopreg.h src/sys/arch/hpcmips/dev: plumreg.h src/sys/dev/ic: advlib.h adwlib.h esiopvar.h osiopreg.h siopvar.h tcic2.c src/sys/dev/mii: nsphyter.c src/sys/dev/pci: neo.c src/sys/dev/pci/bktr: bktr_card.h src/sys/dev/usb: if_atureg.h if_axe.c if_udavreg.h if_urlreg.h if_zydreg.h usb.h Log Message: Fix typos To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/arch/amiga/dev/siopreg.h cvs rdiff -u -r1.3 -r1.4 src/sys/arch/hpcmips/dev/plumreg.h cvs rdiff -u -r1.17 -r1.18 src/sys/dev/ic/advlib.h cvs rdiff -u -r1.19 -r1.20 src/sys/dev/ic/adwlib.h cvs rdiff -u -r1.20 -r1.21 src/sys/dev/ic/esiopvar.h cvs rdiff -u -r1.5 -r1.6 src/sys/dev/ic/osiopreg.h cvs rdiff -u -r1.28 -r1.29 src/sys/dev/ic/siopvar.h cvs rdiff -u -r1.36 -r1.37 src/sys/dev/ic/tcic2.c cvs rdiff -u -r1.36 -r1.37 src/sys/dev/mii/nsphyter.c cvs rdiff -u -r1.47 -r1.48 src/sys/dev/pci/neo.c cvs rdiff -u -r1.5 -r1.6 src/sys/dev/pci/bktr/bktr_card.h cvs rdiff -u -r1.8 -r1.9 src/sys/dev/usb/if_atureg.h \ src/sys/dev/usb/if_udavreg.h src/sys/dev/usb/if_urlreg.h cvs rdiff -u -r1.56 -r1.57 src/sys/dev/usb/if_axe.c cvs rdiff -u -r1.6 -r1.7 src/sys/dev/usb/if_zydreg.h cvs rdiff -u -r1.95 -r1.96 src/sys/dev/usb/usb.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: Fri Aug 24 12:20:02 UTC 2012 Modified Files: src/sys/dev/usb: umass.c umass_quirks.c umassvar.h Log Message: Another contribution to PR kern/42225 which will hopefully bring the story to an end: Always ignore the residue from the CSW, just use the real transfer length counted by the USB stack. This was first proposed by Markus Kilbinger but unfortunately ignored later. (Too many cooks...) According to Matthias Kretschmer, Darwin and Haiku do the same. Remove the "UMASS_QUIRK_IGNORE_RESIDUE" quirk which was just for the one "SuperTop" device mentioned in the PR. This device was successfully tested by Matthias Kretschmer / Ignatios Souvatzis. I've tested the patch with various other devices and didn't find regressions. To generate a diff of this commit: cvs rdiff -u -r1.145 -r1.146 src/sys/dev/usb/umass.c cvs rdiff -u -r1.93 -r1.94 src/sys/dev/usb/umass_quirks.c cvs rdiff -u -r1.33 -r1.34 src/sys/dev/usb/umassvar.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: martin Date: Fri Aug 24 13:14:19 UTC 2012 Modified Files: src/sys/dev/usb: ulpt.c Log Message: Destroy the reader callout on close, as discussed back in may on current-users. To generate a diff of this commit: cvs rdiff -u -r1.91 -r1.92 src/sys/dev/usb/ulpt.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/arm/omap
Module Name:src Committed By: scw Date: Fri Aug 24 15:25:11 UTC 2012 Modified Files: src/sys/arch/arm/omap: omap_wdt.c Log Message: Defend against the case where omapwdt32k_enable() can be called via ddb if the kernel crashes early on before the watchdog driver starts. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/omap/omap_wdt.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/csu/arch/arm
Module Name:src Committed By: matt Date: Fri Aug 24 16:37:45 UTC 2012 Modified Files: src/lib/csu/arch/arm: crtbegin.S Log Message: Fix code around __register_frame_info (fixes core dumps) To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/lib/csu/arch/arm/crtbegin.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: jmmv Date: Fri Aug 24 20:24:40 UTC 2012 Modified Files: src/distrib/sets/lists/tests: mi src/tests/lib/libc/regex: Makefile src/tests/lib/libtre: Makefile Added Files: src/tests/lib/libc/regex: t_regex.sh t_regex_att.c Removed Files: src/tests/lib/libc/regex: att.c t_regex.awk t_regex.in t_regex_att.in Log Message: Sanitize the regex test cases. - Merge h_regex_att (att.c) and t_regex_att.sh into a single C test program. The former was really a test program, and the latter just a very strange driver for it. - Stop using awk to generate the shell test programs. This is unnecessary and confusing. Instead, change t_regex.sh to generate the test case functions on the fly with eval (as done in many other places). To generate a diff of this commit: cvs rdiff -u -r1.488 -r1.489 src/distrib/sets/lists/tests/mi cvs rdiff -u -r1.8 -r1.9 src/tests/lib/libc/regex/Makefile cvs rdiff -u -r1.7 -r0 src/tests/lib/libc/regex/att.c cvs rdiff -u -r1.2 -r0 src/tests/lib/libc/regex/t_regex.awk \ src/tests/lib/libc/regex/t_regex_att.in cvs rdiff -u -r1.3 -r0 src/tests/lib/libc/regex/t_regex.in cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/regex/t_regex.sh \ src/tests/lib/libc/regex/t_regex_att.c cvs rdiff -u -r1.3 -r1.4 src/tests/lib/libtre/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/fs/ffs
Module Name:src Committed By: jmmv Date: Fri Aug 24 20:25:50 UTC 2012 Modified Files: src/tests/fs/ffs: h_ffs_server.c Log Message: h_ffs_server.c is not a test program. Remove unnecessary traces of atf. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tests/fs/ffs/h_ffs_server.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/mk
Module Name:src Committed By: jmmv Date: Fri Aug 24 20:26:25 UTC 2012 Modified Files: src/share/mk: bsd.prog.mk Log Message: Allow DPADD to be specified on a per-program basis. To generate a diff of this commit: cvs rdiff -u -r1.277 -r1.278 src/share/mk/bsd.prog.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/mk
Module Name:src Committed By: jmmv Date: Fri Aug 24 20:28:19 UTC 2012 Modified Files: src/share/mk: bsd.test.mk Log Message: Make DPADD and LDADD specific to the test programs. This allows mixing C and C++ test programs in the same Makefile, and prevents regular programs from being polluted by libraries that they may not need. Suggested by Garrett Cooper in private mail, although I redid his patch. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/share/mk/bsd.test.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.