CVS commit: src/tests/lib/libc/gen

2012-04-10 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Tue Apr 10 12:43:07 UTC 2012

Modified Files:
src/tests/lib/libc/gen: t_fpsetmask.c

Log Message:
Do not skip the tests on Qemu, but point to PR misc/44767 instead.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/tests/lib/libc/gen/t_fpsetmask.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man4

2012-04-10 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Tue Apr 10 12:51:31 UTC 2012

Modified Files:
src/share/man/man4: acpi.4

Log Message:
Fix wrong acronym.


To generate a diff of this commit:
cvs rdiff -u -r1.73 -r1.74 src/share/man/man4/acpi.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/rump/dev/lib

2012-04-10 Thread Andreas Gustafsson
Module Name:src
Committed By:   gson
Date:   Tue Apr 10 13:45:08 UTC 2012

Modified Files:
src/sys/rump/dev/lib/libdrvctl: component.c
src/sys/rump/dev/lib/libmd: component.c

Log Message:
Fix cut-and-paste-os in panic messages


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/rump/dev/lib/libdrvctl/component.c
cvs rdiff -u -r1.1 -r1.2 src/sys/rump/dev/lib/libmd/component.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2012-04-10 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Tue Apr 10 13:48:24 UTC 2012

Modified Files:
src/share/man/man4: acpi.4
src/sys/arch/x86/acpi: acpi_wakeup.c
src/sys/dev/acpi: acpi.c

Log Message:
Now that 6.0 is branched, remove the ACPI-related sysctl nodes in machdep.


To generate a diff of this commit:
cvs rdiff -u -r1.74 -r1.75 src/share/man/man4/acpi.4
cvs rdiff -u -r1.29 -r1.30 src/sys/arch/x86/acpi/acpi_wakeup.c
cvs rdiff -u -r1.252 -r1.253 src/sys/dev/acpi/acpi.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/powerd/scripts

2012-04-10 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Tue Apr 10 13:58:52 UTC 2012

Modified Files:
src/etc/powerd/scripts: sensor_temperature

Log Message:
Gracefully shutdown upon reaching critical temperature levels. Prevents few
laptops (ThinkPad T61 and x61s, among others) from hitting the in-CPU reset.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/etc/powerd/scripts/sensor_temperature

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys

2012-04-10 Thread Thor Lancelot Simon
Module Name:src
Committed By:   tls
Date:   Tue Apr 10 14:02:28 UTC 2012

Modified Files:
src/sys/kern: kern_rndq.c subr_cprng.c
src/sys/lib/libkern: arc4random.c
src/sys/sys: rnd.h

Log Message:
Add a spin mutex to the rndsink structure; it is used to avoid lock
ordering and sleep-holding-locks problems when rekeying, and thus
to avoid a nasty race between cprng destruction and reseeding.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/kern/kern_rndq.c
cvs rdiff -u -r1.5 -r1.6 src/sys/kern/subr_cprng.c
cvs rdiff -u -r1.31 -r1.32 src/sys/lib/libkern/arc4random.c
cvs rdiff -u -r1.29 -r1.30 src/sys/sys/rnd.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/kern

2012-04-10 Thread Thor Lancelot Simon
Module Name:src
Committed By:   tls
Date:   Tue Apr 10 15:12:40 UTC 2012

Modified Files:
src/sys/kern: subr_cprng.c

Log Message:
Fix LOCKDEBUG problems pointed out by drochner@

1) Lock ordering in cprng_strong_destroy had us take a spin mutex then
   an adaptive mutex.  Can't do that.  Reordering this requires changing
   cprng_strong_reseed to tryenter the cprng's own mutex and skip the
   reseed on failure, or we could deadlock.

2) Can't free memory with a valid mutex in it.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/kern/subr_cprng.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/wsfont

2012-04-10 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Tue Apr 10 16:16:03 UTC 2012

Modified Files:
src/sys/dev/wsfont: Droid_Sans_Mono_12x22.h Droid_Sans_Mono_9x18.h

Log Message:
add license headers
I need to find a way to extract at least the copyright notice from the .ttf
file so ttf2wsfont can do this mostly automatically.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/wsfont/Droid_Sans_Mono_12x22.h \
src/sys/dev/wsfont/Droid_Sans_Mono_9x18.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/powerpc/include

2012-04-10 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Tue Apr 10 16:57:50 UTC 2012

Modified Files:
src/sys/arch/powerpc/include: cpu.h

Log Message:
Don't use global asm for __clang__


To generate a diff of this commit:
cvs rdiff -u -r1.90 -r1.91 src/sys/arch/powerpc/include/cpu.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/skel

2012-04-10 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Tue Apr 10 19:02:31 UTC 2012

Modified Files:
src/etc/skel: dot.profile

Log Message:
fix use of setenv in a comment, noted by "stu314" on freenode.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/etc/skel/dot.profile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/i386/conf

2012-04-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Apr 10 23:59:48 UTC 2012

Modified Files:
src/sys/arch/i386/conf: ALL

Log Message:
Add apple partition recognition.


To generate a diff of this commit:
cvs rdiff -u -r1.334 -r1.335 src/sys/arch/i386/conf/ALL

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/public-domain/sqlite

2012-04-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Apr 11 00:41:41 UTC 2012

Modified Files:
src/external/public-domain/sqlite: Makefile.inc

Log Message:
PR/46322: Pierre Pronchery: SQLite from base is compiled without
SQLITE_ENABLE_COLUMN_METADATA
XXX: Pullup for 6


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/public-domain/sqlite/Makefile.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/openpam/dist/lib

2012-04-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Apr 11 02:28:47 UTC 2012

Modified Files:
src/external/bsd/openpam/dist/lib: openpam_ttyconv.c

Log Message:
Add sigquit for completeness to the list of blocked signals with int and tstp.
Does not have any security implication. From Pierre Carrier


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/openpam/dist/lib/openpam_ttyconv.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/tests/lib/libc/gen

2012-04-10 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Wed Apr 11 06:45:16 UTC 2012

Modified Files:
src/tests/lib/libc/gen: t_fpsetmask.c

Log Message:
As it turned out, the fpsetmask(3) tests were unnecessarily skipped on Qemu.
Thus, remove xfails that do not trigger.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tests/lib/libc/gen/t_fpsetmask.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.