CVS commit: src/sys/arch/amiga/amiga

2011-09-14 Thread Radoslaw Kujawa
Module Name:src
Committed By:   rkujawa
Date:   Wed Sep 14 09:19:09 UTC 2011

Modified Files:
src/sys/arch/amiga/amiga: simple_busfuncs.c

Log Message:
Fix typo, add missing include (make this compile again).


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/amiga/amiga/simple_busfuncs.c

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



CVS commit: src/lib/libutil

2011-09-14 Thread Nicolas Joly
Module Name:src
Committed By:   njoly
Date:   Wed Sep 14 11:43:29 UTC 2011

Modified Files:
src/lib/libutil: getlabelsector.3

Log Message:
Kill empty Dv macro.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/lib/libutil/getlabelsector.3

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



CVS commit: src/lib/libc/sys

2011-09-14 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Wed Sep 14 11:49:21 UTC 2011

Modified Files:
src/lib/libc/sys: stat.2

Log Message:
There's no st_block field; it's st_blocks.


To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/lib/libc/sys/stat.2

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



CVS commit: src/sys/compat/linux/common

2011-09-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Sep 14 12:28:09 UTC 2011

Modified Files:
src/sys/compat/linux/common: linux_futex.c linux_futex.h linux_mod.c

Log Message:
Can't use RUN_ONCE here to initialize the futex_lock, otherwise we cannot
unload the module.


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/sys/compat/linux/common/linux_futex.c
cvs rdiff -u -r1.4 -r1.5 src/sys/compat/linux/common/linux_futex.h
cvs rdiff -u -r1.1 -r1.2 src/sys/compat/linux/common/linux_mod.c

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



CVS commit: src/sys/kern

2011-09-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Sep 14 12:29:22 UTC 2011

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

Log Message:
don't increment the number of referenced module as a side effect if we fail.
>From jmcneill


To generate a diff of this commit:
cvs rdiff -u -r1.80 -r1.81 src/sys/kern/kern_module.c

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



CVS commit: src/sys/kern

2011-09-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Sep 14 12:30:20 UTC 2011

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

Log Message:
- don't if then else the same thing. print a more meaningful message
- don't leak a dictionary on failure
- minor KNF


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/kern/kern_module_vfs.c

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



CVS commit: src/distrib/utils/sysinst/arch/acorn32

2011-09-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Sep 14 12:35:19 UTC 2011

Modified Files:
src/distrib/utils/sysinst/arch/acorn32: md.c

Log Message:
fix fprintfs with no format strings.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/distrib/utils/sysinst/arch/acorn32/md.c

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



CVS commit: src/lib/libkvm

2011-09-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Sep 14 12:37:56 UTC 2011

Modified Files:
src/lib/libkvm: kvm_sun2.c kvm_sun3.c kvm_sun3x.c

Log Message:
more sys/param.h additions


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/lib/libkvm/kvm_sun2.c
cvs rdiff -u -r1.14 -r1.15 src/lib/libkvm/kvm_sun3.c
cvs rdiff -u -r1.11 -r1.12 src/lib/libkvm/kvm_sun3x.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/x86/acpi

2011-09-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Sep 14 13:13:21 UTC 2011

Modified Files:
src/sys/arch/x86/acpi: Makefile.wakecode.inc

Log Message:
Don't depend on the .d file here; since this is the only rule, acpi_wakeup.d
will never be build!


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/x86/acpi/Makefile.wakecode.inc

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



CVS commit: src/tests/lib/libm

2011-09-14 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Wed Sep 14 13:29:58 UTC 2011

Modified Files:
src/tests/lib/libm: t_cos.c t_sin.c t_tan.c

Log Message:
Additions to PR lib/45362: the float variants cosf(3), sinf(3), and tanf(3)
do not detect NaN for positive and negative infinity on i386 (qemu).


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libm/t_cos.c \
src/tests/lib/libm/t_sin.c src/tests/lib/libm/t_tan.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/libm

2011-09-14 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Wed Sep 14 13:47:40 UTC 2011

Modified Files:
src/tests/lib/libm: t_ldexp.c

Log Message:
Fix bug/oversight.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/tests/lib/libm/t_ldexp.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/stdio

2011-09-14 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Sep 14 14:34:37 UTC 2011

Modified Files:
src/tests/lib/libc/stdio: t_fopen.c

Log Message:
A test case may not assume opening /dev/tty does something sensible.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/stdio/t_fopen.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/i386/conf

2011-09-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Sep 14 14:58:08 UTC 2011

Modified Files:
src/sys/arch/i386/conf: Makefile.i386

Log Message:
include wakecode after so that the depend rules are defined!


To generate a diff of this commit:
cvs rdiff -u -r1.174 -r1.175 src/sys/arch/i386/conf/Makefile.i386

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



CVS commit: src/sys/arch/x86/acpi

2011-09-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Sep 14 14:58:43 UTC 2011

Modified Files:
src/sys/arch/x86/acpi: Makefile.wakecode.inc

Log Message:
revert previous; bug was in the position of the inclusion of the file.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/x86/acpi/Makefile.wakecode.inc

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



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

2011-09-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Sep 14 14:59:30 UTC 2011

Modified Files:
src/sys/arch/amd64/conf: Makefile.amd64

Log Message:
include wakecode after kernel rules so that the .depend rules are defined


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/sys/arch/amd64/conf/Makefile.amd64

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



CVS commit: src/external/bsd/ntp/dist/ntpd

2011-09-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Sep 14 16:18:29 UTC 2011

Modified Files:
src/external/bsd/ntp/dist/ntpd: ntp_io.c

Log Message:
PR/45308: Manuel Bouyer: Update list of broadcast addresses after updating
interfaces.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/ntp/dist/ntpd/ntp_io.c

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



CVS commit: src/external/lgpl3/gmp/dist/mpn

2011-09-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Sep 14 16:35:22 UTC 2011

Modified Files:
src/external/lgpl3/gmp/dist/mpn: Makefile.in

Log Message:
PR/45367: Gr�goire Sutre: don't depend on m4-ccas and cpp-ccas to be
executable; invoke the shell to run them.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/lgpl3/gmp/dist/mpn/Makefile.in

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



CVS commit: src

2011-09-14 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Wed Sep 14 17:35:45 UTC 2011

Modified Files:
src: build.sh

Log Message:
When using random versions of make to try to find the TOOLDIR,
redirect 2>/dev/null.  This should hide error messages like
"*** missing separator.  Stop." when GNU make doesn't
understand ".include".


To generate a diff of this commit:
cvs rdiff -u -r1.249 -r1.250 src/build.sh

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



CVS commit: src/sys/arch/usermode

2011-09-14 Thread Reinoud Zandijk
Module Name:src
Committed By:   reinoud
Date:   Wed Sep 14 18:26:25 UTC 2011

Modified Files:
src/sys/arch/usermode/include: thunk.h
src/sys/arch/usermode/usermode: thunk.c

Log Message:
Provide thunk fuction to return the host machine's VM_MIN_ADDRESS


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/sys/arch/usermode/include/thunk.h
cvs rdiff -u -r1.36 -r1.37 src/sys/arch/usermode/usermode/thunk.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/usermode

2011-09-14 Thread Reinoud Zandijk
Module Name:src
Committed By:   reinoud
Date:   Wed Sep 14 18:28:36 UTC 2011

Modified Files:
src/sys/arch/usermode/conf: GENERIC Makefile.usermode
src/sys/arch/usermode/usermode: machdep.c pmap.c

Log Message:
Implement in-place execution for binaries! No more MKPIE/MKPIC for userland
anymore!


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/usermode/conf/GENERIC
cvs rdiff -u -r1.20 -r1.21 src/sys/arch/usermode/conf/Makefile.usermode
cvs rdiff -u -r1.30 -r1.31 src/sys/arch/usermode/usermode/machdep.c
cvs rdiff -u -r1.60 -r1.61 src/sys/arch/usermode/usermode/pmap.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/usermode/dev

2011-09-14 Thread Reinoud Zandijk
Module Name:src
Committed By:   reinoud
Date:   Wed Sep 14 18:30:13 UTC 2011

Modified Files:
src/sys/arch/usermode/dev: cpu.c

Log Message:
Make stacksize of newly spawn lwp's bigger than one page. Actually use the
variable stack_size now


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/sys/arch/usermode/dev/cpu.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/usermode/usermode

2011-09-14 Thread Reinoud Zandijk
Module Name:src
Committed By:   reinoud
Date:   Wed Sep 14 19:45:27 UTC 2011

Modified Files:
src/sys/arch/usermode/usermode: pmap.c

Log Message:
Code audit revealed missing brackets and a silly old constant of 1024
lingering around. Fixed with the right values.


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 src/sys/arch/usermode/usermode/pmap.c

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



CVS commit: src/lib/libc/stdlib

2011-09-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Sep 14 23:33:51 UTC 2011

Modified Files:
src/lib/libc/stdlib: Makefile.inc hcreate.3 hcreate.c

Log Message:
add re-entrant versions of the hash functions based on the GNU api.


To generate a diff of this commit:
cvs rdiff -u -r1.77 -r1.78 src/lib/libc/stdlib/Makefile.inc
cvs rdiff -u -r1.8 -r1.9 src/lib/libc/stdlib/hcreate.3
cvs rdiff -u -r1.6 -r1.7 src/lib/libc/stdlib/hcreate.c

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



CVS commit: src/include

2011-09-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Sep 14 23:34:27 UTC 2011

Modified Files:
src/include: search.h

Log Message:
add re-entrant versions of the hash api based on the GNU extensions.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/include/search.h

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



CVS commit: src/distrib/sets/lists/comp

2011-09-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Sep 14 23:37:33 UTC 2011

Modified Files:
src/distrib/sets/lists/comp: mi

Log Message:
add h{create,destroy,search}_r


To generate a diff of this commit:
cvs rdiff -u -r1.1673 -r1.1674 src/distrib/sets/lists/comp/mi

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