CVS commit: src/sys/kern

2010-06-11 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Fri Jun 11 07:32:32 UTC 2010

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

Log Message:
Fix DIAGNOSTIC.  Moral of the story: don't comment xen kernels out of the
build even if you'd like to go to sleep earlier.


To generate a diff of this commit:
cvs rdiff -u -r1.147 -r1.148 src/sys/kern/kern_lwp.c

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



CVS commit: src/doc

2010-06-11 Thread Takahiro Kambe
Module Name:src
Committed By:   taca
Date:   Fri Jun 11 14:19:56 UTC 2010

Modified Files:
src/doc: 3RDPARTY

Log Message:
ISC DHCP 4.1.1-P1 released.


To generate a diff of this commit:
cvs rdiff -u -r1.764 -r1.765 src/doc/3RDPARTY

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

2010-06-11 Thread Nicolas Joly
Module Name:src
Committed By:   njoly
Date:   Fri Jun 11 15:12:45 UTC 2010

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

Log Message:
+librumpkern_ksem.so.0.0.debug


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

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

2010-06-11 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Fri Jun 11 18:21:45 UTC 2010

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

Log Message:
Mark a few atf files as being in the "share" set as well so a
MKSHARE=no release build completes (tested on amd64 and i386).


To generate a diff of this commit:
cvs rdiff -u -r1.866 -r1.867 src/distrib/sets/lists/base/mi
cvs rdiff -u -r1.1462 -r1.1463 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.



CVS commit: src/sys/dev/usb

2010-06-11 Thread Tobias Nygren
Module Name:src
Committed By:   tnn
Date:   Fri Jun 11 18:22:06 UTC 2010

Modified Files:
src/sys/dev/usb: usbdevs

Log Message:
add Samsung GT-B3710 LTE/4G broadband usb stick


To generate a diff of this commit:
cvs rdiff -u -r1.552 -r1.553 src/sys/dev/usb/usbdevs

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

2010-06-11 Thread Tobias Nygren
Module Name:src
Committed By:   tnn
Date:   Fri Jun 11 18:23:57 UTC 2010

Modified Files:
src/sys/dev/usb: usbdevs.h usbdevs_data.h

Log Message:
regen


To generate a diff of this commit:
cvs rdiff -u -r1.546 -r1.547 src/sys/dev/usb/usbdevs.h
cvs rdiff -u -r1.547 -r1.548 src/sys/dev/usb/usbdevs_data.h

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



CVS commit: [netbsd-5] src/sys/netinet

2010-06-11 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Fri Jun 11 23:36:08 UTC 2010

Modified Files:
src/sys/netinet [netbsd-5]: tcp_input.c

Log Message:
Pull up following revision(s) (requested by bouyer in ticket #1382):
sys/netinet/tcp_input.c: revision 1.304
sys/netinet/tcp_input.c: revision 1.305
syn_cache_put(): defer all pool_put() to the callout. Reschedule
the callout if needed so frees are not delayed too much.
syn_cache_timer(): we can't call syn_cache_put() here any more,
so move code deleted from syn_cache_put() here.
Avoid KASSERT() in kern_timeout.c because pool_put() is called from
ipintr context, as reported in
http://mail-index.netbsd.org/tech-kern/2010/03/19/msg007762.html
Thanks to Andrew Doran and Mindaugas Rasiukevicius for help and review.
Make sure SYN_CACHE_TIMER_ARM() has been run before calling syn_cache_put()
as it will reschedule the timer.  Fixes PR kern/43318.


To generate a diff of this commit:
cvs rdiff -u -r1.291.4.4 -r1.291.4.5 src/sys/netinet/tcp_input.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/ptyfs

2010-06-11 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Fri Jun 11 23:52:38 UTC 2010

Added Files:
src/tests/fs/ptyfs: Atffile Makefile t_nullpts.c t_ptyfs.c

Log Message:
Add some ptyfs tests.

Note: I'm not adding these to the build yet, since they depend on
some other other cleanup I might get done only after the weekend.
Even so, t_nullpts serves a simple example of how to repeat the
crash described in PR kern/43456 (just remove "rump_sys_" from the
calls and it should compile and you should get a host kernel panic
instead of a coredump).


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/tests/fs/ptyfs/Atffile src/tests/fs/ptyfs/Makefile \
src/tests/fs/ptyfs/t_nullpts.c src/tests/fs/ptyfs/t_ptyfs.c

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



CVS commit: [netbsd-5] src/sys/kern

2010-06-11 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Sat Jun 12 00:59:57 UTC 2010

Modified Files:
src/sys/kern [netbsd-5]: vfs_xattr.c

Log Message:
Pull up following revision(s) (requested by pooka in ticket #1405):
sys/kern/vfs_xattr.c: revision 1.21 via patch
Don't namei while holding vnode lock.  kern/43328


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.19.6.1 src/sys/kern/vfs_xattr.c

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



CVS commit: [netbsd-5] src/sys/dev/usb

2010-06-11 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Sat Jun 12 01:05:44 UTC 2010

Modified Files:
src/sys/dev/usb [netbsd-5]: ehci.c

Log Message:
Pull up following revision(s) (requested by jakllsch in ticket #1409):
sys/dev/usb/ehci.c: revision 1.167
Nvidia EHCI controllers do not ignore one or more of the "Port Number",
"Hub Address", "Split Completion Mask" fields in the Queue Head marked
"This field is ignored by the host controller unless the EPS field
indicates a full- or low-speed device.".
Therefore, only populate these fields for full- and low-speed devices.
Fixes PR#37884.


To generate a diff of this commit:
cvs rdiff -u -r1.154.4.1 -r1.154.4.2 src/sys/dev/usb/ehci.c

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



CVS commit: [netbsd-5] src/sbin/disklabel

2010-06-11 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Sat Jun 12 01:11:42 UTC 2010

Modified Files:
src/sbin/disklabel [netbsd-5]: interact.c

Log Message:
Pull up following revision(s) (requested by dholland in ticket #1410):
sbin/disklabel/interact.c: revision 1.34
Change getnum() to use intmax_t instead of int, so it doesn't overflow
between 2^31 and 2^32. Adjust call sites accordingly. PR 43354.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.30.26.1 src/sbin/disklabel/interact.c

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



CVS commit: [netbsd-5] src/distrib/notes/common

2010-06-11 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Sat Jun 12 01:14:21 UTC 2010

Modified Files:
src/distrib/notes/common [netbsd-5]: xfer

Log Message:
Pull up following revision(s) (requested by tsutsui in ticket #1408):
distrib/notes/common/xfer: revision 1.68
Update IP addresses (both IPv4 and IPv6) of current ftp.NetBSD.org.
XXX: is it still worth to note those numbers in INSTALL docs nowadays?


To generate a diff of this commit:
cvs rdiff -u -r1.63.2.1 -r1.63.2.2 src/distrib/notes/common/xfer

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



CVS commit: [netbsd-5] src

2010-06-11 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Sat Jun 12 01:55:44 UTC 2010

Modified Files:
src [netbsd-5]: UPDATING

Log Message:
Pull up following revision(s) (requested by mrg in ticket #1413):
UPDATING: revision 1.197
add a note about native xorg updates


To generate a diff of this commit:
cvs rdiff -u -r1.178.2.2 -r1.178.2.3 src/UPDATING

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



CVS commit: [netbsd-5] src/doc

2010-06-11 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Sat Jun 12 01:58:35 UTC 2010

Modified Files:
src/doc [netbsd-5]: CHANGES-5.1

Log Message:
Tickets 1382, 1405, 1408, 1409, 1410, and 1413.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.231 -r1.1.2.232 src/doc/CHANGES-5.1

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



CVS commit: src/usr.bin/mklocale

2010-06-11 Thread Takehiko NOZAKI
Module Name:src
Committed By:   tnozaki
Date:   Sat Jun 12 02:51:35 UTC 2010

Modified Files:
src/usr.bin/mklocale: lex.l yacc.y

Log Message:
use _FileRune* instead of _Rune*.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/usr.bin/mklocale/lex.l
cvs rdiff -u -r1.29 -r1.30 src/usr.bin/mklocale/yacc.y

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



CVS commit: [netbsd-5] src

2010-06-11 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Sat Jun 12 02:51:38 UTC 2010

Modified Files:
src/doc [netbsd-5]: CHANGES-5.1
src/gnu/usr.bin/groff/tmac [netbsd-5]: mdoc.local
src/sys/sys [netbsd-5]: param.h

Log Message:
Welcome to 5.1_RC3!


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.232 -r1.1.2.233 src/doc/CHANGES-5.1
cvs rdiff -u -r1.43.4.12 -r1.43.4.13 src/gnu/usr.bin/groff/tmac/mdoc.local
cvs rdiff -u -r1.330.4.12 -r1.330.4.13 src/sys/sys/param.h

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



CVS commit: src/lib/libc/locale

2010-06-11 Thread Takehiko NOZAKI
Module Name:src
Committed By:   tnozaki
Date:   Sat Jun 12 05:54:05 UTC 2010

Modified Files:
src/lib/libc/locale: iswctype_mb.c rune.c rune_local.h runeglue.c
runetable.c

Log Message:
stop to renaming _CTYPE_* -> _RUNETYPE_*.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/lib/libc/locale/iswctype_mb.c
cvs rdiff -u -r1.36 -r1.37 src/lib/libc/locale/rune.c
cvs rdiff -u -r1.15 -r1.16 src/lib/libc/locale/rune_local.h
cvs rdiff -u -r1.18 -r1.19 src/lib/libc/locale/runeglue.c
cvs rdiff -u -r1.24 -r1.25 src/lib/libc/locale/runetable.c

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