CVS commit: src

2013-10-29 Thread Marc Balmer
Module Name:src
Committed By:   mbalmer
Date:   Tue Oct 29 08:34:07 UTC 2013

Modified Files:
src/distrib/sets/lists/man: mi
src/share/man/man9lua: Makefile
Added Files:
src/share/man/man9lua: core.9lua

Log Message:
add a core(9lua) man page


To generate a diff of this commit:
cvs rdiff -u -r1.1446 -r1.1447 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.1 -r1.2 src/share/man/man9lua/Makefile
cvs rdiff -u -r0 -r1.1 src/share/man/man9lua/core.9lua

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



CVS commit: src/sys/modules/luapmf

2013-10-29 Thread Marc Balmer
Module Name:src
Committed By:   mbalmer
Date:   Tue Oct 29 09:18:45 UTC 2013

Modified Files:
src/sys/modules/luapmf: luapmf.c

Log Message:
check parameters


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/modules/luapmf/luapmf.c

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



CVS commit: src

2013-10-29 Thread Marc Balmer
Module Name:src
Committed By:   mbalmer
Date:   Tue Oct 29 09:40:44 UTC 2013

Modified Files:
src/distrib/sets/lists/man: mi
src/share/man/man9lua: Makefile
Added Files:
src/share/man/man9lua: pmf.9lua

Log Message:
add pmf(9lua) man page


To generate a diff of this commit:
cvs rdiff -u -r1.1447 -r1.1448 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.2 -r1.3 src/share/man/man9lua/Makefile
cvs rdiff -u -r0 -r1.1 src/share/man/man9lua/pmf.9lua

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



CVS commit: [netbsd-6] src/sys/ufs/ffs

2013-10-29 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Tue Oct 29 09:51:30 UTC 2013

Modified Files:
src/sys/ufs/ffs [netbsd-6]: ffs_alloc.c

Log Message:
Pull up the following revisions(s) (requested by bad in ticket #978):
sys/ufs/ffs/ffs_alloc.c:revision 1.144

Pull in fix from FreeBSD ffs_alloc.c r121785:
Consider only cylinder groups with at least 75% of the average free space
per cylinder group and 75% of the average free inodes per cylinder group
as candidates for the creation of a new directory.  Avoids excessive I/O
scanning for a suitable cylinder group on relatively full file systems.


To generate a diff of this commit:
cvs rdiff -u -r1.130 -r1.130.4.1 src/sys/ufs/ffs/ffs_alloc.c

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



CVS commit: [netbsd-6] src/doc

2013-10-29 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Tue Oct 29 09:52:03 UTC 2013

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Ticket #978


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.55 -r1.1.2.56 src/doc/CHANGES-6.2

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



CVS commit: src

2013-10-29 Thread Juergen Hannken-Illjes
Module Name:src
Committed By:   hannken
Date:   Tue Oct 29 09:53:51 UTC 2013

Modified Files:
src/external/cddl/osnet/sys/sys: vnode.h
src/share/man/man9: vnode.9
src/sys/kern: uipc_usrreq.c vfs_cache.c vfs_mount.c vfs_vnode.c
src/sys/miscfs/procfs: procfs_subr.c
src/sys/sys: param.h vnode.h
src/sys/ufs/ext2fs: ext2fs_vfsops.c
src/sys/ufs/ffs: ffs_vfsops.c
src/sys/ufs/lfs: lfs_segment.c lfs_syscalls.c

Log Message:
Vnode API cleanup pass 1.

- Make these defines and functions private to vfs_vnode.c:

  VC_MASK, VC_LOCK, DOCLOSE, VI_IANCTREDO and VI_INACTNOW
  vclean() and vrelel()

- Remove the long time unused lwp argument from vrecycle().

- Remove vtryget(), it is responsible for ugly hacks and doesn't
  look that effective.

Presented on tech-kern.

Welcome to 6.99.25


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/external/cddl/osnet/sys/sys/vnode.h
cvs rdiff -u -r1.56 -r1.57 src/share/man/man9/vnode.9
cvs rdiff -u -r1.147 -r1.148 src/sys/kern/uipc_usrreq.c
cvs rdiff -u -r1.91 -r1.92 src/sys/kern/vfs_cache.c
cvs rdiff -u -r1.22 -r1.23 src/sys/kern/vfs_mount.c src/sys/kern/vfs_vnode.c
cvs rdiff -u -r1.102 -r1.103 src/sys/miscfs/procfs/procfs_subr.c
cvs rdiff -u -r1.433 -r1.434 src/sys/sys/param.h
cvs rdiff -u -r1.238 -r1.239 src/sys/sys/vnode.h
cvs rdiff -u -r1.173 -r1.174 src/sys/ufs/ext2fs/ext2fs_vfsops.c
cvs rdiff -u -r1.289 -r1.290 src/sys/ufs/ffs/ffs_vfsops.c
cvs rdiff -u -r1.232 -r1.233 src/sys/ufs/lfs/lfs_segment.c
cvs rdiff -u -r1.149 -r1.150 src/sys/ufs/lfs/lfs_syscalls.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/ufs/ffs

2013-10-29 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Tue Oct 29 10:04:12 UTC 2013

Modified Files:
src/sys/ufs/ffs [netbsd-5]: ffs_alloc.c

Log Message:
Pull up the following revisions(s) (requested by bad in ticket #1888):
sys/ufs/ffs/ffs_alloc.c:revision 1.144 via patch

Pull in fix from FreeBSD ffs_alloc.c r121785:
Consider only cylinder groups with at least 75% of the average free space
per cylinder group and 75% of the average free inodes per cylinder group
as candidates for the creation of a new directory.  Avoids excessive I/O
scanning for a suitable cylinder group on relatively full file systems.


To generate a diff of this commit:
cvs rdiff -u -r1.113.4.2 -r1.113.4.3 src/sys/ufs/ffs/ffs_alloc.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/doc

2013-10-29 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Tue Oct 29 10:04:41 UTC 2013

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

Log Message:
Ticket #1888


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.34 -r1.1.2.35 src/doc/CHANGES-5.3

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



CVS commit: [netbsd-6] src/doc

2013-10-29 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Tue Oct 29 10:06:07 UTC 2013

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Note #978 was via patch


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.56 -r1.1.2.57 src/doc/CHANGES-6.2

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



CVS commit: src/usr.bin/vis

2013-10-29 Thread Nicolas Joly
Module Name:src
Committed By:   njoly
Date:   Tue Oct 29 12:27:23 UTC 2013

Modified Files:
src/usr.bin/vis: vis.1

Log Message:
Small typo. From Michael W. Bombardieri.


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/usr.bin/vis/vis.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/flock

2013-10-29 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Oct 29 16:02:15 UTC 2013

Modified Files:
src/usr.bin/flock: flock.c

Log Message:
PR/48351: Dennis Ferguson: Fix incorrect parsing of flock flags.
XXX: still flock -s 0 fails with EINVAL, why?


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/usr.bin/flock/flock.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/usb

2013-10-29 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Oct 29 16:10:49 UTC 2013

Modified Files:
src/sys/dev/usb: if_axen.c

Log Message:
Remove bogus cast. The LHS type is smaller, so let the compiler decide
on the correct (unsigned type).


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

2013-10-29 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Oct 29 16:11:46 UTC 2013

Modified Files:
src/share/mk: bsd.hostlib.mk bsd.hostprog.mk bsd.own.mk

Log Message:
Unbreak src/tools usage of C++.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/share/mk/bsd.hostlib.mk
cvs rdiff -u -r1.71 -r1.72 src/share/mk/bsd.hostprog.mk
cvs rdiff -u -r1.754 -r1.755 src/share/mk/bsd.own.mk

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



CVS commit: src/sbin/luactl

2013-10-29 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Tue Oct 29 16:11:15 UTC 2013

Modified Files:
src/sbin/luactl: luactl.c

Log Message:
Mark usage as dead.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sbin/luactl/luactl.c

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



CVS commit: src/sys/rump

2013-10-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Tue Oct 29 16:19:28 UTC 2013

Modified Files:
src/sys/rump: listsrcdirs

Log Message:
Add MIPS.  Requested by Justin Cormack.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/rump/listsrcdirs

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



CVS commit: src/sys/rump

2013-10-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Tue Oct 29 16:18:42 UTC 2013

Modified Files:
src/sys/rump: listsrcdirs

Log Message:
Maintain arch list in a separate variable.
no functional change


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/rump/listsrcdirs

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



CVS commit: src/sys/net/npf

2013-10-29 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Tue Oct 29 16:39:10 UTC 2013

Modified Files:
src/sys/net/npf: npf_impl.h npf_nat.c npf_session.c

Log Message:
npf_session_setnat: fix the race condition when the old connection is still
being expired while a new/duplicate is being created.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/sys/net/npf/npf_impl.h
cvs rdiff -u -r1.20 -r1.21 src/sys/net/npf/npf_nat.c
cvs rdiff -u -r1.25 -r1.26 src/sys/net/npf/npf_session.c

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



CVS commit: src/sys/modules/lua

2013-10-29 Thread Marc Balmer
Module Name:src
Committed By:   mbalmer
Date:   Tue Oct 29 17:35:04 UTC 2013

Modified Files:
src/sys/modules/lua: lua.c

Log Message:
initialize variables


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/modules/lua/lua.c

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



CVS commit: src/sys/sys

2013-10-29 Thread Marc Balmer
Module Name:src
Committed By:   mbalmer
Date:   Tue Oct 29 17:35:40 UTC 2013

Modified Files:
src/sys/sys: lua.h

Log Message:
include sys/condvar.h


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

2013-10-29 Thread Marc Balmer
Module Name:src
Committed By:   mbalmer
Date:   Tue Oct 29 20:11:52 UTC 2013

Modified Files:
src/distrib/sets/lists/modules: md.evbppc

Log Message:
add lua(4) related modules


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/distrib/sets/lists/modules/md.evbppc

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



CVS commit: src

2013-10-29 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Wed Oct 30 02:22:52 UTC 2013

Modified Files:
src/distrib/sets/lists/base: mi
src/etc/mtree: NetBSD.dist.base

Log Message:
add ./usr/include/gcc-4.8 directory to the build.


To generate a diff of this commit:
cvs rdiff -u -r1.1046 -r1.1047 src/distrib/sets/lists/base/mi
cvs rdiff -u -r1.127 -r1.128 src/etc/mtree/NetBSD.dist.base

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



CVS commit: src/share/man/man9

2013-10-29 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Oct 30 04:16:44 UTC 2013

Modified Files:
src/share/man/man9: bus_dma.9

Log Message:
Remove extra period.


To generate a diff of this commit:
cvs rdiff -u -r1.58 -r1.59 src/share/man/man9/bus_dma.9

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



CVS commit: src/sys/arch

2013-10-29 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Wed Oct 30 06:47:18 UTC 2013

Modified Files:
src/sys/arch/evbarm/mini2440: mini2440_machdep.c
src/sys/arch/mips/mips: mips_machdep.c

Log Message:
G/C struct user *proc0paddr.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/evbarm/mini2440/mini2440_machdep.c
cvs rdiff -u -r1.256 -r1.257 src/sys/arch/mips/mips/mips_machdep.c

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