CVS commit: src

2010-01-02 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sat Jan  2 10:42:49 UTC 2010

Modified Files:
src/lib/libc/time: ialloc.c scheck.c zic.c
src/tools/zic: Makefile

Log Message:
Include nbtool_config.h for src/tools/zic/ and
remove bogus -DNOID to disable __RCSID().

XXX: should we also remove #ifndef lint from scheck.c and zic.c?


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/lib/libc/time/ialloc.c
cvs rdiff -u -r1.7 -r1.8 src/lib/libc/time/scheck.c
cvs rdiff -u -r1.25 -r1.26 src/lib/libc/time/zic.c
cvs rdiff -u -r1.3 -r1.4 src/tools/zic/Makefile

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



CVS commit: src/sys/kern

2010-01-02 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sat Jan  2 10:57:36 UTC 2010

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

Log Message:
Update default TOD value to 2010/01/01 12:00:00.


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

2010-01-02 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Sat Jan  2 15:20:39 UTC 2010

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

Log Message:
Move initialization of pool_allocator_lock before its first use.
This failed on archs where a mutex isn't initialized to a zero
value.

Defer allocation of pool log to the logging action, if allocation
fails, it will be retried the next time something is logged.

Clear pool log on allocation so that ddb doesn't crash when showing
so far unused log entries.


To generate a diff of this commit:
cvs rdiff -u -r1.178 -r1.179 src/sys/kern/subr_pool.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/msgc

2010-01-02 Thread David Laight
Module Name:src
Committed By:   dsl
Date:   Sat Jan  2 16:08:20 UTC 2010

Modified Files:
src/usr.bin/msgc: msg_sys.def

Log Message:
Remove some sign compare warnings.


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/usr.bin/msgc/msg_sys.def

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/mac68k

2010-01-02 Thread David Laight
Module Name:src
Committed By:   dsl
Date:   Sat Jan  2 17:15:07 UTC 2010

Modified Files:
src/distrib/utils/sysinst/arch/mac68k: menus.md.de menus.md.en
menus.md.es menus.md.pl

Log Message:
Sanitise whitespace to minimise the differences between these files.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/distrib/utils/sysinst/arch/mac68k/menus.md.de
cvs rdiff -u -r1.21 -r1.22 src/distrib/utils/sysinst/arch/mac68k/menus.md.en
cvs rdiff -u -r1.2 -r1.3 src/distrib/utils/sysinst/arch/mac68k/menus.md.es
cvs rdiff -u -r1.8 -r1.9 src/distrib/utils/sysinst/arch/mac68k/menus.md.pl

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



CVS commit: src/sys/dev/sysmon

2010-01-02 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Sat Jan  2 19:02:40 UTC 2010

Modified Files:
src/sys/dev/sysmon: sysmon_envsys_events.c

Log Message:
Flags for existence of limit values need to be propagated to the
event data.  Otherwise, they're not processed.

XXX This needs to be rethought.  While fixing it this way makes things
XXX work, we really shouldn't need to replicate these flags.  The
XXX limits and their flags should be kept as part of the sensor data,
XXX and not part of the event-monitor data.  I'll work on this in the
XXX near future.


To generate a diff of this commit:
cvs rdiff -u -r1.73 -r1.74 src/sys/dev/sysmon/sysmon_envsys_events.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

2010-01-02 Thread David Laight
Module Name:src
Committed By:   dsl
Date:   Sat Jan  2 20:54:46 UTC 2010

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

Log Message:
Fix another couple of signed v unsigned comparisons of disk block numbers.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/distrib/utils/sysinst/arch/mvme68k/md.c
cvs rdiff -u -r1.37 -r1.38 src/distrib/utils/sysinst/arch/x68k/md.c

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



CVS commit: [matt-nb5-mips64] src/sys/sys

2010-01-02 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sat Jan  2 21:40:49 UTC 2010

Modified Files:
src/sys/sys [matt-nb5-mips64]: kcore.h

Log Message:
add a struct tag.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.2.94.1 src/sys/sys/kcore.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

2010-01-02 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Sun Jan  3 01:07:19 UTC 2010

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

Log Message:
Pools are created way before the pool subsystem mutexes are
initialized.

Ignore also pool_allocator_lock while the system is in cold state.

When the system has left cold state, uvm_init() should have
also initialized the pool subsystem and the mutexes are
ready to use.


To generate a diff of this commit:
cvs rdiff -u -r1.179 -r1.180 src/sys/kern/subr_pool.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/ic

2010-01-02 Thread Matthew Jacob
Module Name:src
Committed By:   mjacob
Date:   Sun Jan  3 02:47:10 UTC 2010

Modified Files:
src/sys/dev/ic: isp.c isp_stds.h isp_tpublic.h ispmbox.h

Log Message:
Add some more definitions appropriate for T10 standards
and use those cleaned up definitions.

Use 2100 style firmware loading if the load address and
load size is less than 64k. Some apparently buggy ROMs
out there choke otherwise.

Clean up some WWNN derivations from WWPN.


To generate a diff of this commit:
cvs rdiff -u -r1.117 -r1.118 src/sys/dev/ic/isp.c
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/ic/isp_stds.h
cvs rdiff -u -r1.18 -r1.19 src/sys/dev/ic/isp_tpublic.h
cvs rdiff -u -r1.53 -r1.54 src/sys/dev/ic/ispmbox.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/i386/conf

2010-01-02 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Sun Jan  3 03:50:39 UTC 2010

Modified Files:
src/sys/arch/i386/conf: ALL CARDBUS GENERIC GENERIC_PS2TINY
GENERIC_TINY INSTALL_FLOPPY INSTALL_TINY NET4501 XBOX XEN3_DOM0
XEN3_DOMU

Log Message:
Assorted spelling/capitalization fixes from Igor Sobrado in PR kern/22595.
Merged by yours truly as the set of configs has changed quite a bit since
the PR was filed in 2003, and I may have missed some stuff. These changes
should probably be merged into other arches' configs; I'm not going to do
that now though.


To generate a diff of this commit:
cvs rdiff -u -r1.223 -r1.224 src/sys/arch/i386/conf/ALL
cvs rdiff -u -r1.79 -r1.80 src/sys/arch/i386/conf/CARDBUS
cvs rdiff -u -r1.955 -r1.956 src/sys/arch/i386/conf/GENERIC
cvs rdiff -u -r1.57 -r1.58 src/sys/arch/i386/conf/GENERIC_PS2TINY
cvs rdiff -u -r1.120 -r1.121 src/sys/arch/i386/conf/GENERIC_TINY
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/i386/conf/INSTALL_FLOPPY
cvs rdiff -u -r1.126 -r1.127 src/sys/arch/i386/conf/INSTALL_TINY
cvs rdiff -u -r1.69 -r1.70 src/sys/arch/i386/conf/NET4501
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/i386/conf/XBOX
cvs rdiff -u -r1.24 -r1.25 src/sys/arch/i386/conf/XEN3_DOM0
cvs rdiff -u -r1.20 -r1.21 src/sys/arch/i386/conf/XEN3_DOMU

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

2010-01-02 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Sun Jan  3 03:53:34 UTC 2010

Modified Files:
src/sys/arch/i386/conf: ALL CARDBUS GENERIC GENERIC_ISDN
GENERIC_PS2TINY GENERIC_TINY INSTALL_FLOPPY INSTALL_PS2
INSTALL_TINY INSTALL_XEN3PAE_DOMU INSTALL_XEN3_DOMU NET4501 XBOX
XEN3_DOM0 XEN3_DOMU

Log Message:
Whitespace. Portions from Igor Sobrado in PR kern/22595.
Deploy spacetab where needed so columns don't teleport when
commenting or uncommenting things.


To generate a diff of this commit:
cvs rdiff -u -r1.224 -r1.225 src/sys/arch/i386/conf/ALL
cvs rdiff -u -r1.80 -r1.81 src/sys/arch/i386/conf/CARDBUS
cvs rdiff -u -r1.956 -r1.957 src/sys/arch/i386/conf/GENERIC
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/i386/conf/GENERIC_ISDN
cvs rdiff -u -r1.58 -r1.59 src/sys/arch/i386/conf/GENERIC_PS2TINY
cvs rdiff -u -r1.121 -r1.122 src/sys/arch/i386/conf/GENERIC_TINY
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/i386/conf/INSTALL_FLOPPY
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/i386/conf/INSTALL_PS2 \
src/sys/arch/i386/conf/INSTALL_XEN3_DOMU
cvs rdiff -u -r1.127 -r1.128 src/sys/arch/i386/conf/INSTALL_TINY
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/i386/conf/INSTALL_XEN3PAE_DOMU
cvs rdiff -u -r1.70 -r1.71 src/sys/arch/i386/conf/NET4501
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/i386/conf/XBOX
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/i386/conf/XEN3_DOM0
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/i386/conf/XEN3_DOMU

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

2010-01-02 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Sun Jan  3 04:06:31 UTC 2010

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

Log Message:
One last bit of whitespace from PR kern/22595.


To generate a diff of this commit:
cvs rdiff -u -r1.352 -r1.353 src/sys/arch/i386/conf/files.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/arm/arm

2010-01-02 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Sun Jan  3 04:25:16 UTC 2010

Modified Files:
src/sys/arch/arm/arm: cpufunc_asm_arm10.S cpufunc_asm_arm11.S
cpufunc_asm_arm67.S cpufunc_asm_arm7tdmi.S cpufunc_asm_arm8.S
cpufunc_asm_arm9.S cpufunc_asm_sa1.S cpufunc_asm_xscale.S

Log Message:
s/These is/These are/


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/arm/arm/cpufunc_asm_arm10.S
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/arm/arm/cpufunc_asm_arm11.S \
src/sys/arch/arm/arm/cpufunc_asm_arm8.S
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/arm/cpufunc_asm_arm67.S \
src/sys/arch/arm/arm/cpufunc_asm_arm7tdmi.S
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/arm/arm/cpufunc_asm_arm9.S
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/arm/arm/cpufunc_asm_sa1.S
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/arm/arm/cpufunc_asm_xscale.S

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



CVS commit: src/sys/dev/pci

2010-01-02 Thread John Nemeth
Module Name:src
Committed By:   jnemeth
Date:   Sun Jan  3 04:26:26 UTC 2010

Modified Files:
src/sys/dev/pci: pcidevs

Log Message:
PR/42558 - Ryo ONODERA -- add entry for IO-DATA TV tuner card


To generate a diff of this commit:
cvs rdiff -u -r1.1006 -r1.1007 src/sys/dev/pci/pcidevs

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



CVS commit: src/sys/dev/pci

2010-01-02 Thread John Nemeth
Module Name:src
Committed By:   jnemeth
Date:   Sun Jan  3 04:27:21 UTC 2010

Modified Files:
src/sys/dev/pci: pcidevs.h pcidevs_data.h

Log Message:
regen


To generate a diff of this commit:
cvs rdiff -u -r1.1004 -r1.1005 src/sys/dev/pci/pcidevs.h
cvs rdiff -u -r1.1003 -r1.1004 src/sys/dev/pci/pcidevs_data.h

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