CVS commit: [uebayasi-xip] src/sys/arch/arm/arm32

2010-07-08 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Thu Jul  8 07:46:00 UTC 2010

Modified Files:
src/sys/arch/arm/arm32 [uebayasi-xip]: bus_dma.c

Log Message:
Fix build.


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.52.18.1 src/sys/arch/arm/arm32/bus_dma.c

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



CVS commit: [uebayasi-xip] src/sys/uvm

2010-07-08 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Thu Jul  8 07:47:37 UTC 2010

Modified Files:
src/sys/uvm [uebayasi-xip]: uvm_page.h

Log Message:
One more missing s/DIRECT_PAGE/XIP/.


To generate a diff of this commit:
cvs rdiff -u -r1.59.2.24 -r1.59.2.25 src/sys/uvm/uvm_page.h

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-07-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Jul  8 08:46:20 UTC 2010

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

Log Message:
Add Advantech PCI-1610 and PCI-1612


To generate a diff of this commit:
cvs rdiff -u -r1.1039 -r1.1040 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-07-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Jul  8 08:47:05 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.1036 -r1.1037 src/sys/dev/pci/pcidevs.h
cvs rdiff -u -r1.1035 -r1.1036 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.



CVS commit: src

2010-07-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Jul  8 08:49:55 UTC 2010

Modified Files:
src/share/man/man4: puc.4
src/sys/dev/pci: pucdata.c

Log Message:
- Fix a table for Advantech PCI-1620
- Add entry for PCI-1610 and PCI-1612


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/share/man/man4/puc.4
cvs rdiff -u -r1.63 -r1.64 src/sys/dev/pci/pucdata.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/x86

2010-07-08 Thread Christoph Egger
Module Name:src
Committed By:   cegger
Date:   Thu Jul  8 09:42:09 UTC 2010

Modified Files:
src/sys/arch/x86/x86: mtrr_i686.c

Log Message:
use __arraycount


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/x86/x86/mtrr_i686.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/x86

2010-07-08 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Jul  8 11:22:25 UTC 2010

Modified Files:
src/sys/arch/x86/x86: cpu.c

Log Message:
cpu_attach: use kmem_zalloc instead of memset.


To generate a diff of this commit:
cvs rdiff -u -r1.71 -r1.72 src/sys/arch/x86/x86/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

2010-07-08 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Jul  8 11:25:00 UTC 2010

Modified Files:
src/sys/arch/amd64/conf: files.amd64
src/sys/arch/i386/conf: files.i386
src/sys/arch/x86/conf: files.x86
src/sys/arch/xen/conf: files.xen
Added Files:
src/sys/arch/x86/x86: procfs_machdep.c
Removed Files:
src/sys/arch/amd64/amd64: procfs_machdep.c
src/sys/arch/i386/i386: procfs_machdep.c

Log Message:
Unify i386 and amd64 procfs MD code into x86.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r0 src/sys/arch/amd64/amd64/procfs_machdep.c
cvs rdiff -u -r1.68 -r1.69 src/sys/arch/amd64/conf/files.amd64
cvs rdiff -u -r1.354 -r1.355 src/sys/arch/i386/conf/files.i386
cvs rdiff -u -r1.34 -r0 src/sys/arch/i386/i386/procfs_machdep.c
cvs rdiff -u -r1.54 -r1.55 src/sys/arch/x86/conf/files.x86
cvs rdiff -u -r0 -r1.1 src/sys/arch/x86/x86/procfs_machdep.c
cvs rdiff -u -r1.108 -r1.109 src/sys/arch/xen/conf/files.xen

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



CVS commit: src/sys/rump/librump/rumpkern

2010-07-08 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu Jul  8 11:39:58 UTC 2010

Modified Files:
src/sys/rump/librump/rumpkern: memalloc.c

Log Message:
Emulate malloc(9) a little better by panicking if a should-not-fail
allocation fails.  We could invoke the pagedaemon here, but since
malloc(9) is panicky when it runs out of kmem_map, let's do the
"same".


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

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



CVS commit: src

2010-07-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Jul  8 12:09:32 UTC 2010

Modified Files:
src/share/man/man4: puc.4
src/sys/dev/pci: pucdata.c

Log Message:
- Fix an entry for CP-168EL-A/PCIe reported by Ryo SHIMIZU.
- Add an entry for NetMos NM9901 UART. Tested my own NM9901 card.


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/share/man/man4/puc.4
cvs rdiff -u -r1.64 -r1.65 src/sys/dev/pci/pucdata.c

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



CVS commit: src/sys

2010-07-08 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Jul  8 12:23:31 UTC 2010

Modified Files:
src/sys/kern: sys_select.c
src/sys/sys: fd_set.h lwp.h param.h selinfo.h types.h

Log Message:
Implement direct select/poll support, currently effective for socket and
pipe subsystems.  Avoids overhead of second selscan() on wake-up, and thus
improves performance on certain workloads (especially when polling on many
file-descriptors).  Also, clean-up sys/fd_set.h header and improve macros.

Welcome to 5.99.36!


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/kern/sys_select.c
cvs rdiff -u -r1.2 -r1.3 src/sys/sys/fd_set.h
cvs rdiff -u -r1.136 -r1.137 src/sys/sys/lwp.h
cvs rdiff -u -r1.370 -r1.371 src/sys/sys/param.h
cvs rdiff -u -r1.7 -r1.8 src/sys/sys/selinfo.h
cvs rdiff -u -r1.86 -r1.87 src/sys/sys/types.h

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



CVS commit: src/tests/fs

2010-07-08 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu Jul  8 13:21:02 UTC 2010

Modified Files:
src/tests/fs/common: h_fsmacros.h
src/tests/fs/vfs: Makefile
Added Files:
src/tests/fs/common: lfs.c

Log Message:
Add LFS to vfs test list.  TODO: start cleanerd too.

It fails in a number of different ways.  Some of them seem to appear
as a function of the file system size (i'm not sure if it's because
the lack of the cleaner or not.  i'm guessing ``no'', though).

ok njoly


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/fs/common/h_fsmacros.h
cvs rdiff -u -r0 -r1.1 src/tests/fs/common/lfs.c
cvs rdiff -u -r1.1 -r1.2 src/tests/fs/vfs/Makefile

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



CVS commit: src/tests/fs/common

2010-07-08 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu Jul  8 13:30:53 UTC 2010

Modified Files:
src/tests/fs/common: lfs.c

Log Message:
fill in PR number now that we have one


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/fs/common/lfs.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

2010-07-08 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Jul  8 13:58:52 UTC 2010

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

Log Message:
Make __fd_mask unsigned.


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

2010-07-08 Thread Cherry G. Mathew
Module Name:src
Committed By:   cherry
Date:   Thu Jul  8 14:19:53 UTC 2010

Modified Files:
src/sys/arch/xen/xen: balloon.c

Log Message:
make read-only, and return sane values in balloon related sysctl(7)
nodes when  'options XEN_BALLOON' is disabled.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/xen/xen/balloon.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/rpc

2010-07-08 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Jul  8 14:45:09 UTC 2010

Modified Files:
src/lib/libc/rpc: svc.c

Log Message:
svc_getreq[set]: use unsigned when assigning to fds_bits.
XXX: This code should not invade fd_set internals at all.


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/lib/libc/rpc/svc.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/xen/xen

2010-07-08 Thread Cherry G. Mathew
Module Name:src
Committed By:   cherry
Date:   Thu Jul  8 14:51:14 UTC 2010

Modified Files:
src/sys/arch/xen/xen: balloon.c

Log Message:
Provide the sysctl(7) interface to the balloon driver only to dom0


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/xen/xen/balloon.c

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Jul  8 15:13:35 UTC 2010

Modified Files:
src/lib/libpthread: pthread.c

Log Message:
pthread_create: simplify error path slightly.


To generate a diff of this commit:
cvs rdiff -u -r1.115 -r1.116 src/lib/libpthread/pthread.c

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Thu Jul  8 18:15:27 UTC 2010

Modified Files:
src/lib/libpthread: pthread_attr_getinheritsched.3

Log Message:
Sort sections.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libpthread/pthread_attr_getinheritsched.3

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Thu Jul  8 18:24:35 UTC 2010

Modified Files:
src/lib/libpthread: pthread_attr_getguardsize.3

Log Message:
Whitespace nit.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libpthread/pthread_attr_getguardsize.3

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

2010-07-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Thu Jul  8 18:25:03 UTC 2010

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

Log Message:
Bump date.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/share/man/man4/puc.4

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Thu Jul  8 18:30:00 UTC 2010

Modified Files:
src/lib/libpthread: pthread_attr.3

Log Message:
Add missing word.


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/lib/libpthread/pthread_attr.3

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-07-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Jul  8 18:49:30 UTC 2010

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

Log Message:
- Add "vendor SYBA" and two cards.
- Add one Avlab cards.
- Add two Moxa card.
- Add some VScom cards.


To generate a diff of this commit:
cvs rdiff -u -r1.1040 -r1.1041 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-07-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Jul  8 18:50:46 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.1037 -r1.1038 src/sys/dev/pci/pcidevs.h
cvs rdiff -u -r1.1036 -r1.1037 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.



CVS commit: src

2010-07-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Jul  8 18:55:45 UTC 2010

Modified Files:
src/share/man/man4: puc.4
src/sys/dev/pci: pucdata.c

Log Message:
- Fix the frequency for Advantech PCI1620 port 4-8.
- Fix the mask for IBM SurePos 300
- s/Titan/VScom/
- Add the following cards:
- Avlab PCI 2 Serial
- Avlab Low Profile PCI 4 Serial (another revision?)
- Moxa CP-102/PCI.
- SUNIX 4036 2S
- Syba Tech Ltd. PCI-4S
- Syba Tech Ltd. PCI-4S2P-550-ECP
- PR#37299
- VScom PCI-010L
- VScom PCI-100L
- VScom PCI-110L
- VScom PCI-200L
- VScom PCI-210L
- VScom PCI-400L
- VScom PCI-011H
- VScom PCI-100H


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/share/man/man4/puc.4
cvs rdiff -u -r1.65 -r1.66 src/sys/dev/pci/pucdata.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

2010-07-08 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Jul  8 18:56:18 UTC 2010

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

Log Message:
Cast FD_* argument to unsiged, shut ups lint.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/sys/fd_set.h

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



CVS commit: src

2010-07-08 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Jul  8 19:20:34 UTC 2010

Modified Files:
src/distrib/sets/lists/comp: mi
src/lib/libpthread: Makefile
Added Files:
src/lib/libpthread: pthread_barrier.3 pthread_cond.3 pthread_mutex.3
pthread_rwlock.3 pthread_spin.3
Removed Files:
src/lib/libpthread: pthread_barrier_destroy.3 pthread_barrier_init.3
pthread_barrier_wait.3 pthread_cond_broadcast.3
pthread_cond_destroy.3 pthread_cond_init.3 pthread_cond_wait.3
pthread_mutex_destroy.3 pthread_mutex_init.3 pthread_mutex_lock.3
pthread_mutex_unlock.3 pthread_rwlock_destroy.3
pthread_rwlock_init.3 pthread_rwlock_rdlock.3
pthread_rwlock_unlock.3 pthread_rwlock_wrlock.3
pthread_spin_destroy.3 pthread_spin_init.3 pthread_spin_lock.3
pthread_spin_unlock.3

Log Message:
Merge/group man pages:
- pthread_barrier_{init,destroy,wait} into pthread_barrier(3).
- pthread_cond_* into pthread_cond(3).
- pthread_mutex_* into pthread_mutex(3).
- pthread_rwlock_* into pthread_rwlock(3).
- pthread_spin_* into pthread_spin(3).
Cross-link amongst groups.
OK jruoho@


To generate a diff of this commit:
cvs rdiff -u -r1.1480 -r1.1481 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.65 -r1.66 src/lib/libpthread/Makefile
cvs rdiff -u -r0 -r1.1 src/lib/libpthread/pthread_barrier.3 \
src/lib/libpthread/pthread_cond.3 src/lib/libpthread/pthread_mutex.3 \
src/lib/libpthread/pthread_rwlock.3 src/lib/libpthread/pthread_spin.3
cvs rdiff -u -r1.7 -r0 src/lib/libpthread/pthread_barrier_destroy.3 \
src/lib/libpthread/pthread_barrier_wait.3 \
src/lib/libpthread/pthread_cond_broadcast.3 \
src/lib/libpthread/pthread_rwlock_unlock.3
cvs rdiff -u -r1.9 -r0 src/lib/libpthread/pthread_barrier_init.3 \
src/lib/libpthread/pthread_rwlock_init.3
cvs rdiff -u -r1.4 -r0 src/lib/libpthread/pthread_cond_destroy.3 \
src/lib/libpthread/pthread_mutex_destroy.3
cvs rdiff -u -r1.10 -r0 src/lib/libpthread/pthread_cond_init.3 \
src/lib/libpthread/pthread_rwlock_rdlock.3
cvs rdiff -u -r1.15 -r0 src/lib/libpthread/pthread_cond_wait.3
cvs rdiff -u -r1.6 -r0 src/lib/libpthread/pthread_mutex_init.3 \
src/lib/libpthread/pthread_mutex_lock.3 \
src/lib/libpthread/pthread_rwlock_destroy.3 \
src/lib/libpthread/pthread_spin_destroy.3
cvs rdiff -u -r1.3 -r0 src/lib/libpthread/pthread_mutex_unlock.3
cvs rdiff -u -r1.8 -r0 src/lib/libpthread/pthread_rwlock_wrlock.3 \
src/lib/libpthread/pthread_spin_init.3 \
src/lib/libpthread/pthread_spin_lock.3 \
src/lib/libpthread/pthread_spin_unlock.3

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

2010-07-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Jul  8 20:00:24 UTC 2010

Modified Files:
src/share/man/man4: Makefile
Added Files:
src/share/man/man4/man4.x86: Makefile balloon.4

Log Message:
man page for balloon driver from Cherry


To generate a diff of this commit:
cvs rdiff -u -r1.521 -r1.522 src/share/man/man4/Makefile
cvs rdiff -u -r0 -r1.1 src/share/man/man4/man4.x86/Makefile \
src/share/man/man4/man4.x86/balloon.4

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

2010-07-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Jul  8 20:02:57 UTC 2010

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

Log Message:
add balloon


To generate a diff of this commit:
cvs rdiff -u -r1.1224 -r1.1225 src/distrib/sets/lists/man/mi

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Thu Jul  8 20:07:23 UTC 2010

Modified Files:
src/lib/libpthread: pthread_mutex.3

Log Message:
Continue the discussion with few remarks and rearrange slightly.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libpthread/pthread_mutex.3

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Thu Jul  8 20:09:29 UTC 2010

Modified Files:
src/lib/libpthread: pthread_mutex.3

Log Message:
Add missing word.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/lib/libpthread/pthread_mutex.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/rpc

2010-07-08 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Thu Jul  8 20:12:37 UTC 2010

Modified Files:
src/lib/libc/rpc: svc.c

Log Message:
Explicitly cast argument of ffs(3) to fix lint error.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/lib/libc/rpc/svc.c

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



CVS commit: src/etc/mtree

2010-07-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Jul  8 20:13:19 UTC 2010

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
add {man,cat,html4}/x86


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 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/sys/modules/procfs

2010-07-08 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Jul  8 20:32:12 UTC 2010

Modified Files:
src/sys/modules/procfs: Makefile

Log Message:
Sync procfs module with kernel change for x86 MD.


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

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



CVS commit: src/bin/ls

2010-07-08 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Jul  8 20:43:34 UTC 2010

Modified Files:
src/bin/ls: ls.c

Log Message:
Add #include  for howmany().


To generate a diff of this commit:
cvs rdiff -u -r1.66 -r1.67 src/bin/ls/ls.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/du

2010-07-08 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Jul  8 20:52:22 UTC 2010

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

Log Message:
Add #include 


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/usr.bin/du/du.c

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Thu Jul  8 20:59:43 UTC 2010

Modified Files:
src/lib/libpthread: pthread_barrier.3

Log Message:
Split long lines, .Dv NULL, note pthread_barrierattr_init(3).


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libpthread/pthread_barrier.3

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



CVS commit: src/crypto/external/bsd/openssh/dist

2010-07-08 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Jul  8 21:16:44 UTC 2010

Modified Files:
src/crypto/external/bsd/openssh/dist: ssh-keyscan.c

Log Message:
Add missing sys/param.h


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/crypto/external/bsd/openssh/dist/ssh-keyscan.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/man4.x86

2010-07-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Thu Jul  8 21:33:02 UTC 2010

Modified Files:
src/share/man/man4/man4.x86: balloon.4

Log Message:
New sentence, new line. Remove trailing whitespace. Other minor fixes.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/share/man/man4/man4.x86/balloon.4

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Thu Jul  8 21:33:38 UTC 2010

Modified Files:
src/lib/libpthread: pthread_barrier.3

Log Message:
Add comma in enumeration, sort errors.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/lib/libpthread/pthread_barrier.3

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Thu Jul  8 21:34:06 UTC 2010

Modified Files:
src/lib/libpthread: pthread_cond.3

Log Message:
Sort errors.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libpthread/pthread_cond.3

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Thu Jul  8 21:34:22 UTC 2010

Modified Files:
src/lib/libpthread: pthread_mutex.3

Log Message:
Add comma in enumeration, sort errors.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/lib/libpthread/pthread_mutex.3

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Thu Jul  8 21:34:48 UTC 2010

Modified Files:
src/lib/libpthread: pthread_rwlock.3

Log Message:
Add comma in enumeration, sort errors.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libpthread/pthread_rwlock.3

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Thu Jul  8 21:35:10 UTC 2010

Modified Files:
src/lib/libpthread: pthread_spin.3

Log Message:
Add comma in enumeration, remove Xr to itself from SEE ALSO.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libpthread/pthread_spin.3

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

2010-07-08 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Thu Jul  8 21:43:58 UTC 2010

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

Log Message:
Add HTML version of ballon(4).


To generate a diff of this commit:
cvs rdiff -u -r1.1225 -r1.1226 src/distrib/sets/lists/man/mi

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Thu Jul  8 21:48:08 UTC 2010

Modified Files:
src/lib/libpthread: pthread_spin.3

Log Message:
Add some remarks and clarifications, simplify RETURN VALUES, grammar, etc.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/lib/libpthread/pthread_spin.3

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

2010-07-08 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Thu Jul  8 22:01:34 UTC 2010

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

Log Message:
Add directories for "x86" manual page category.


To generate a diff of this commit:
cvs rdiff -u -r1.875 -r1.876 src/distrib/sets/lists/base/mi

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Thu Jul  8 22:19:26 UTC 2010

Modified Files:
src/lib/libpthread: Makefile pthread_attr_getschedparam.3
Removed Files:
src/lib/libpthread: pthread_attr_getschedpolicy.3

Log Message:
Group also pthread_attr_getschedparam(3) and pthread_attr_getschedpolicy(3),
as these two pages fit well together.


To generate a diff of this commit:
cvs rdiff -u -r1.66 -r1.67 src/lib/libpthread/Makefile
cvs rdiff -u -r1.1 -r1.2 src/lib/libpthread/pthread_attr_getschedparam.3
cvs rdiff -u -r1.1 -r0 src/lib/libpthread/pthread_attr_getschedpolicy.3

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Thu Jul  8 22:46:34 UTC 2010

Modified Files:
src/lib/libpthread: pthread_mutexattr.3

Log Message:
.Xr instaed of .Fn for pthread_mutex_init(3), update the error codes,
cleanup STANDARDS, etc.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/lib/libpthread/pthread_mutexattr.3

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-07-08 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Thu Jul  8 23:15:23 UTC 2010

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

Log Message:
sel_do_scan: do not bother to assert for SEL_SCANNING state before blocking,
as it might also be SEL_BLOCKING due to spurious wake-ups.  That has no harm.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sys/kern/sys_select.c

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Thu Jul  8 23:23:37 UTC 2010

Modified Files:
src/lib/libpthread: pthread_barrierattr.3

Log Message:
Cleanup errors; no error returns are defined in NetBSD. (The error codes
should be audited, and tested, for all pthread functions. Also the used
separation between "shall fail" and "may fail" should probably be removed.)


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/lib/libpthread/pthread_barrierattr.3

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



CVS commit: src/sys/dev/i2c

2010-07-08 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Thu Jul  8 23:27:17 UTC 2010

Modified Files:
src/sys/dev/i2c: sdtemp.c sdtemp_reg.h

Log Message:
Add additional chip IDs, and be more specific about which revs we match.

>From Guenter Roeck on a Linux mailing list.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/dev/i2c/sdtemp.c
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/i2c/sdtemp_reg.h

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



CVS commit: src/lib/libpthread

2010-07-08 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Thu Jul  8 23:27:50 UTC 2010

Modified Files:
src/lib/libpthread: pthread_barrierattr.3

Log Message:
Ups. pthread_barrierattr_destroy(3) may fail with EINVAL.


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

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



CVS commit: src/crypto/external/bsd/netpgp/dist/src/lib

2010-07-08 Thread Alistair G. Crooks
Module Name:src
Committed By:   agc
Date:   Fri Jul  9 05:35:35 UTC 2010

Modified Files:
src/crypto/external/bsd/netpgp/dist/src/lib: create.c crypto.c
keyring.c misc.c netpgp.c openssl_crypto.c packet-parse.c
packet-print.c packet.h reader.c readerwriter.h ssh2pgp.c version.h
writer.c

Log Message:
Changes to 3.99.7/20100701

+ recognise ascii-armoured encrypted messages properly, in memory and
  in files
+ print error message and exit for now when trying to encrypt with a DSA key
+ fix bug reported by dyoung when trying to print out the encryption key
  fingerprint


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 \
src/crypto/external/bsd/netpgp/dist/src/lib/create.c
cvs rdiff -u -r1.24 -r1.25 \
src/crypto/external/bsd/netpgp/dist/src/lib/crypto.c \
src/crypto/external/bsd/netpgp/dist/src/lib/openssl_crypto.c \
src/crypto/external/bsd/netpgp/dist/src/lib/writer.c
cvs rdiff -u -r1.38 -r1.39 \
src/crypto/external/bsd/netpgp/dist/src/lib/keyring.c
cvs rdiff -u -r1.32 -r1.33 src/crypto/external/bsd/netpgp/dist/src/lib/misc.c \
src/crypto/external/bsd/netpgp/dist/src/lib/packet-print.c
cvs rdiff -u -r1.63 -r1.64 \
src/crypto/external/bsd/netpgp/dist/src/lib/netpgp.c
cvs rdiff -u -r1.37 -r1.38 \
src/crypto/external/bsd/netpgp/dist/src/lib/packet-parse.c \
src/crypto/external/bsd/netpgp/dist/src/lib/reader.c
cvs rdiff -u -r1.23 -r1.24 \
src/crypto/external/bsd/netpgp/dist/src/lib/packet.h
cvs rdiff -u -r1.10 -r1.11 \
src/crypto/external/bsd/netpgp/dist/src/lib/readerwriter.h
cvs rdiff -u -r1.13 -r1.14 \
src/crypto/external/bsd/netpgp/dist/src/lib/ssh2pgp.c
cvs rdiff -u -r1.36 -r1.37 \
src/crypto/external/bsd/netpgp/dist/src/lib/version.h

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



CVS commit: src/crypto/external/bsd/netpgp/dist

2010-07-08 Thread Alistair G. Crooks
Module Name:src
Committed By:   agc
Date:   Fri Jul  9 05:36:29 UTC 2010

Modified Files:
src/crypto/external/bsd/netpgp/dist: TODO configure configure.ac tst
src/crypto/external/bsd/netpgp/dist/src/netpgp: Makefile
src/crypto/external/bsd/netpgp/dist/src/netpgpverify: Makefile

Log Message:
minor changes to the ssh host key test invocations


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/crypto/external/bsd/netpgp/dist/TODO
cvs rdiff -u -r1.31 -r1.32 src/crypto/external/bsd/netpgp/dist/configure
cvs rdiff -u -r1.32 -r1.33 src/crypto/external/bsd/netpgp/dist/configure.ac
cvs rdiff -u -r1.26 -r1.27 src/crypto/external/bsd/netpgp/dist/tst
cvs rdiff -u -r1.15 -r1.16 \
src/crypto/external/bsd/netpgp/dist/src/netpgp/Makefile
cvs rdiff -u -r1.14 -r1.15 \
src/crypto/external/bsd/netpgp/dist/src/netpgpverify/Makefile

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



CVS commit: src/crypto/external/bsd/netpgp/lib

2010-07-08 Thread Alistair G. Crooks
Module Name:src
Committed By:   agc
Date:   Fri Jul  9 05:37:30 UTC 2010

Modified Files:
src/crypto/external/bsd/netpgp/lib: config.h

Log Message:
update version in generated config.h file to 20100707


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/crypto/external/bsd/netpgp/lib/config.h

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