CVS commit: src/usr.sbin/puffs/mount_psshfs

2010-01-08 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Fri Jan  8 10:53:32 UTC 2010

Modified Files:
src/usr.sbin/puffs/mount_psshfs: psbuf.c

Log Message:
Fix compilation with -Wsign-compare.  Apparently 5.0 doesn't have
-Wsign-compare enabled, which explains a thing or two ...

pointed out by gson


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/usr.sbin/puffs/mount_psshfs/psbuf.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-01-08 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Fri Jan  8 11:35:12 UTC 2010

Modified Files:
src/sys/compat/common: vfs_syscalls_43.c
src/sys/compat/irix: irix_mman.c
src/sys/fs/adosfs: adlookup.c
src/sys/fs/cd9660: cd9660_lookup.c cd9660_vfsops.c
src/sys/fs/filecorefs: filecore_lookup.c filecore_vfsops.c
src/sys/fs/hfs: hfs_vfsops.c hfs_vnops.c
src/sys/fs/msdosfs: msdosfs_denode.c msdosfs_lookup.c
src/sys/fs/nilfs: nilfs_vnops.c
src/sys/fs/ntfs: ntfs_subr.c ntfs_vfsops.c ntfs_vnops.c
src/sys/fs/ptyfs: ptyfs_vfsops.c ptyfs_vnops.c
src/sys/fs/smbfs: smbfs_vnops.c
src/sys/fs/sysvbfs: sysvbfs_vnops.c
src/sys/fs/tmpfs: tmpfs_vnops.c
src/sys/fs/udf: udf_vnops.c
src/sys/fs/union: union_subr.c union_vfsops.c union_vnops.c
src/sys/fs/unionfs: unionfs_subr.c
src/sys/kern: kern_acct.c kern_core.c kern_exec.c kern_fork.c
tty_bsdpty.c uipc_usrreq.c vfs_cwd.c vfs_getcwd.c vfs_lookup.c
vfs_subr.c vfs_syscalls.c vfs_vnops.c
src/sys/miscfs/fdesc: fdesc_vfsops.c fdesc_vnops.c
src/sys/miscfs/genfs: layer_subr.c layer_vfsops.c layer_vnops.c
src/sys/miscfs/kernfs: kernfs_vnops.c
src/sys/miscfs/procfs: procfs_vnops.c
src/sys/miscfs/umapfs: umap_vnops.c
src/sys/nfs: nfs_serv.c nfs_vnops.c
src/sys/sys: vnode.h
src/sys/ufs/ext2fs: ext2fs_lookup.c ext2fs_vfsops.c
src/sys/ufs/ffs: ffs_vfsops.c
src/sys/ufs/lfs: lfs_alloc.c lfs_bio.c lfs_vfsops.c
src/sys/ufs/ufs: ufs_lookup.c
src/sys/uvm: uvm_vnode.c

Log Message:
The VATTR_NULL/VREF/VHOLD/HOLDRELE() macros lost their will to live
years ago when the kernel was modified to not alter ABI based on
DIAGNOSTIC, and now just call the respective function interfaces
(in lowercase).  Plenty of mix'n match upper/lowercase has creeped
into the tree since then.  Nuke the macros and convert all callsites
to lowercase.

no functional change


To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 src/sys/compat/common/vfs_syscalls_43.c
cvs rdiff -u -r1.22 -r1.23 src/sys/compat/irix/irix_mman.c
cvs rdiff -u -r1.12 -r1.13 src/sys/fs/adosfs/adlookup.c
cvs rdiff -u -r1.16 -r1.17 src/sys/fs/cd9660/cd9660_lookup.c
cvs rdiff -u -r1.68 -r1.69 src/sys/fs/cd9660/cd9660_vfsops.c
cvs rdiff -u -r1.11 -r1.12 src/sys/fs/filecorefs/filecore_lookup.c
cvs rdiff -u -r1.60 -r1.61 src/sys/fs/filecorefs/filecore_vfsops.c
cvs rdiff -u -r1.24 -r1.25 src/sys/fs/hfs/hfs_vfsops.c
cvs rdiff -u -r1.15 -r1.16 src/sys/fs/hfs/hfs_vnops.c
cvs rdiff -u -r1.36 -r1.37 src/sys/fs/msdosfs/msdosfs_denode.c
cvs rdiff -u -r1.19 -r1.20 src/sys/fs/msdosfs/msdosfs_lookup.c
cvs rdiff -u -r1.3 -r1.4 src/sys/fs/nilfs/nilfs_vnops.c
cvs rdiff -u -r1.43 -r1.44 src/sys/fs/ntfs/ntfs_subr.c
cvs rdiff -u -r1.79 -r1.80 src/sys/fs/ntfs/ntfs_vfsops.c
cvs rdiff -u -r1.45 -r1.46 src/sys/fs/ntfs/ntfs_vnops.c
cvs rdiff -u -r1.41 -r1.42 src/sys/fs/ptyfs/ptyfs_vfsops.c
cvs rdiff -u -r1.32 -r1.33 src/sys/fs/ptyfs/ptyfs_vnops.c
cvs rdiff -u -r1.73 -r1.74 src/sys/fs/smbfs/smbfs_vnops.c
cvs rdiff -u -r1.25 -r1.26 src/sys/fs/sysvbfs/sysvbfs_vnops.c
cvs rdiff -u -r1.65 -r1.66 src/sys/fs/tmpfs/tmpfs_vnops.c
cvs rdiff -u -r1.56 -r1.57 src/sys/fs/udf/udf_vnops.c
cvs rdiff -u -r1.34 -r1.35 src/sys/fs/union/union_subr.c
cvs rdiff -u -r1.60 -r1.61 src/sys/fs/union/union_vfsops.c
cvs rdiff -u -r1.33 -r1.34 src/sys/fs/union/union_vnops.c
cvs rdiff -u -r1.4 -r1.5 src/sys/fs/unionfs/unionfs_subr.c
cvs rdiff -u -r1.87 -r1.88 src/sys/kern/kern_acct.c
cvs rdiff -u -r1.14 -r1.15 src/sys/kern/kern_core.c
cvs rdiff -u -r1.292 -r1.293 src/sys/kern/kern_exec.c
cvs rdiff -u -r1.174 -r1.175 src/sys/kern/kern_fork.c
cvs rdiff -u -r1.15 -r1.16 src/sys/kern/tty_bsdpty.c
cvs rdiff -u -r1.127 -r1.128 src/sys/kern/uipc_usrreq.c
cvs rdiff -u -r1.2 -r1.3 src/sys/kern/vfs_cwd.c
cvs rdiff -u -r1.43 -r1.44 src/sys/kern/vfs_getcwd.c
cvs rdiff -u -r1.120 -r1.121 src/sys/kern/vfs_lookup.c
cvs rdiff -u -r1.393 -r1.394 src/sys/kern/vfs_subr.c
cvs rdiff -u -r1.401 -r1.402 src/sys/kern/vfs_syscalls.c
cvs rdiff -u -r1.168 -r1.169 src/sys/kern/vfs_vnops.c
cvs rdiff -u -r1.83 -r1.84 src/sys/miscfs/fdesc/fdesc_vfsops.c
cvs rdiff -u -r1.108 -r1.109 src/sys/miscfs/fdesc/fdesc_vnops.c
cvs rdiff -u -r1.27 -r1.28 src/sys/miscfs/genfs/layer_subr.c
cvs rdiff -u -r1.31 -r1.32 src/sys/miscfs/genfs/layer_vfsops.c
cvs rdiff -u -r1.38 -r1.39 src/sys/miscfs/genfs/layer_vnops.c
cvs rdiff -u -r1.138 -r1.139 src/sys/miscfs/kernfs/kernfs_vnops.c
cvs rdiff -u -r1.176 -r1.177 src/sys/miscfs/procfs/procfs_vnops.c
cvs rdiff -u -r1.47 -r1.48 src/sys/miscfs/umapfs/umap_vnops.c
cvs rdiff -u -r1.149 -r1.150 src/sys/nfs/nfs_serv.c
cvs rdiff -u -r1.281 -r1.282 src/sys/nfs/nfs_vnops.c
cvs rdiff -u -r1.210 -r1.211 src/sys/sys/vnode.h
cvs rdiff -u -r1.60 -r1.61 src/sys/ufs/ext2fs/ext2fs_lookup.c
cvs rdiff -u -r1.152 -r1.153 src/sys/ufs/ext2fs/ext2fs_vfsops.c
cvs 

CVS commit: src/sys/kern

2010-01-08 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Fri Jan  8 12:07:08 UTC 2010

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

Log Message:
Simplify device G/C: use global list and config_alldevs_unlock_gc().


To generate a diff of this commit:
cvs rdiff -u -r1.193 -r1.194 src/sys/kern/subr_autoconf.c

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



CVS commit: src/external/bsd/pcc/dist/pcc/cc/cpp

2010-01-08 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Fri Jan  8 16:32:47 UTC 2010

Modified Files:
src/external/bsd/pcc/dist/pcc/cc/cpp: cpp.1

Log Message:
Fix markup.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/pcc/dist/pcc/cc/cpp/cpp.1

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-01-08 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Fri Jan  8 16:37:40 UTC 2010

Modified Files:
src/crypto/external/bsd/openssh/dist: ssh.1

Log Message:
Don't use .Xo/.Xc. Fix date format.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/crypto/external/bsd/openssh/dist/ssh.1

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-01-08 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Fri Jan  8 16:40:30 UTC 2010

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

Log Message:
Fix memory barrier in a debug function


To generate a diff of this commit:
cvs rdiff -u -r1.203 -r1.204 src/sys/dev/usb/ohci.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/time

2010-01-08 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Fri Jan  8 19:20:21 UTC 2010

Modified Files:
src/lib/libc/time: zic.8

Log Message:
Fix up mix of man(7)/mdoc(7).


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/lib/libc/time/zic.8

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-01-08 Thread David Young
Module Name:src
Committed By:   dyoung
Date:   Fri Jan  8 19:43:26 UTC 2010

Modified Files:
src/sys/arch/x86/pci: ichlpcib.c pchb.c
src/sys/arch/x86/x86: cpu.c x86_autoconf.c
src/sys/arch/xen/x86: cpu.c

Log Message:
Expand PMF_FN_* macros.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/x86/pci/ichlpcib.c
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/x86/pci/pchb.c
cvs rdiff -u -r1.65 -r1.66 src/sys/arch/x86/x86/cpu.c
cvs rdiff -u -r1.47 -r1.48 src/sys/arch/x86/x86/x86_autoconf.c
cvs rdiff -u -r1.39 -r1.40 src/sys/arch/xen/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/i386/pci

2010-01-08 Thread David Young
Module Name:src
Committed By:   dyoung
Date:   Fri Jan  8 19:45:28 UTC 2010

Modified Files:
src/sys/arch/i386/pci: elan520.c piixpcib.c

Log Message:
Expand PMF_FN_* macros.


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/sys/arch/i386/pci/elan520.c
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/i386/pci/piixpcib.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/cardbus

2010-01-08 Thread David Young
Module Name:src
Committed By:   dyoung
Date:   Fri Jan  8 19:47:42 UTC 2010

Modified Files:
src/sys/dev/cardbus: cardbus.c ehci_cardbus.c if_ath_cardbus.c
if_atw_cardbus.c if_rtw_cardbus.c siisata_cardbus.c

Log Message:
Expand PMF_FN_* macros.


To generate a diff of this commit:
cvs rdiff -u -r1.98 -r1.99 src/sys/dev/cardbus/cardbus.c
cvs rdiff -u -r1.23 -r1.24 src/sys/dev/cardbus/ehci_cardbus.c
cvs rdiff -u -r1.36 -r1.37 src/sys/dev/cardbus/if_ath_cardbus.c
cvs rdiff -u -r1.27 -r1.28 src/sys/dev/cardbus/if_atw_cardbus.c
cvs rdiff -u -r1.32 -r1.33 src/sys/dev/cardbus/if_rtw_cardbus.c
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/cardbus/siisata_cardbus.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/gpio

2010-01-08 Thread David Young
Module Name:src
Committed By:   dyoung
Date:   Fri Jan  8 19:48:18 UTC 2010

Modified Files:
src/sys/dev/gpio: gpio.c

Log Message:
Expand PMF_FN_* macros.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/dev/gpio/gpio.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/sdmmc

2010-01-08 Thread David Young
Module Name:src
Committed By:   dyoung
Date:   Fri Jan  8 19:53:10 UTC 2010

Modified Files:
src/sys/dev/sdmmc: sdhc.c sdhcvar.h

Log Message:
Expand PMF_FN_* macros.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/sdmmc/sdhc.c
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/sdmmc/sdhcvar.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-01-08 Thread David Young
Module Name:src
Committed By:   dyoung
Date:   Fri Jan  8 19:56:52 UTC 2010

Modified Files:
src/sys/dev/pci: agp.c agp_i810.c agp_intel.c ahcisata_pci.c auacer.c
auich.c auixp.c autri.c auvia.c azalia.c cs4280.c cs4281.c
ehci_pci.c esa.c esm.c fwohci_pci.c gcscaudio.c if_age.c
if_ath_pci.c if_atw_pci.c if_bce.c if_fxp_pci.c if_gem_pci.c
if_iwn.c if_msk.c if_nfe.c if_rtw_pci.c if_sip.c if_sk.c if_vr.c
if_wpi.c ixpide.c mvsata_pci.c neo.c pccbb.c pci.c piixide.c
piixpm.c ppb.c siisata_pci.c uhci_pci.c vga_pci.c viaide.c yds.c
src/sys/dev/pci/hdaudio: hdaudio_afg.c hdaudio_pci.c

Log Message:
Expand PMF_FN_* macros.


To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 src/sys/dev/pci/agp.c
cvs rdiff -u -r1.64 -r1.65 src/sys/dev/pci/agp_i810.c
cvs rdiff -u -r1.32 -r1.33 src/sys/dev/pci/agp_intel.c \
src/sys/dev/pci/auixp.c
cvs rdiff -u -r1.17 -r1.18 src/sys/dev/pci/ahcisata_pci.c
cvs rdiff -u -r1.25 -r1.26 src/sys/dev/pci/auacer.c
cvs rdiff -u -r1.133 -r1.134 src/sys/dev/pci/auich.c
cvs rdiff -u -r1.44 -r1.45 src/sys/dev/pci/autri.c
cvs rdiff -u -r1.70 -r1.71 src/sys/dev/pci/auvia.c src/sys/dev/pci/azalia.c
cvs rdiff -u -r1.55 -r1.56 src/sys/dev/pci/cs4280.c
cvs rdiff -u -r1.42 -r1.43 src/sys/dev/pci/cs4281.c
cvs rdiff -u -r1.45 -r1.46 src/sys/dev/pci/ehci_pci.c
cvs rdiff -u -r1.52 -r1.53 src/sys/dev/pci/esa.c src/sys/dev/pci/piixide.c
cvs rdiff -u -r1.51 -r1.52 src/sys/dev/pci/esm.c
cvs rdiff -u -r1.33 -r1.34 src/sys/dev/pci/fwohci_pci.c
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/pci/gcscaudio.c
cvs rdiff -u -r1.34 -r1.35 src/sys/dev/pci/if_age.c src/sys/dev/pci/if_iwn.c
cvs rdiff -u -r1.35 -r1.36 src/sys/dev/pci/if_ath_pci.c
cvs rdiff -u -r1.22 -r1.23 src/sys/dev/pci/if_atw_pci.c
cvs rdiff -u -r1.28 -r1.29 src/sys/dev/pci/if_bce.c
cvs rdiff -u -r1.71 -r1.72 src/sys/dev/pci/if_fxp_pci.c
cvs rdiff -u -r1.38 -r1.39 src/sys/dev/pci/if_gem_pci.c
cvs rdiff -u -r1.30 -r1.31 src/sys/dev/pci/if_msk.c src/sys/dev/pci/piixpm.c
cvs rdiff -u -r1.47 -r1.48 src/sys/dev/pci/if_nfe.c src/sys/dev/pci/vga_pci.c \
src/sys/dev/pci/yds.c
cvs rdiff -u -r1.15 -r1.16 src/sys/dev/pci/if_rtw_pci.c
cvs rdiff -u -r1.143 -r1.144 src/sys/dev/pci/if_sip.c
cvs rdiff -u -r1.62 -r1.63 src/sys/dev/pci/if_sk.c
cvs rdiff -u -r1.100 -r1.101 src/sys/dev/pci/if_vr.c
cvs rdiff -u -r1.43 -r1.44 src/sys/dev/pci/if_wpi.c src/sys/dev/pci/neo.c
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/pci/ixpide.c
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/pci/mvsata_pci.c
cvs rdiff -u -r1.192 -r1.193 src/sys/dev/pci/pccbb.c
cvs rdiff -u -r1.124 -r1.125 src/sys/dev/pci/pci.c
cvs rdiff -u -r1.40 -r1.41 src/sys/dev/pci/ppb.c
cvs rdiff -u -r1.5 -r1.6 src/sys/dev/pci/siisata_pci.c
cvs rdiff -u -r1.48 -r1.49 src/sys/dev/pci/uhci_pci.c
cvs rdiff -u -r1.66 -r1.67 src/sys/dev/pci/viaide.c
cvs rdiff -u -r1.17 -r1.18 src/sys/dev/pci/hdaudio/hdaudio_afg.c
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/pci/hdaudio/hdaudio_pci.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/pckbport

2010-01-08 Thread David Young
Module Name:src
Committed By:   dyoung
Date:   Fri Jan  8 20:00:33 UTC 2010

Modified Files:
src/sys/dev/pckbport: pckbd.c pms.c

Log Message:
Expand PMF_FN_* macros.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/sys/dev/pckbport/pckbd.c
cvs rdiff -u -r1.28 -r1.29 src/sys/dev/pckbport/pms.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/sbus

2010-01-08 Thread David Young
Module Name:src
Committed By:   dyoung
Date:   Fri Jan  8 20:01:21 UTC 2010

Modified Files:
src/sys/dev/sbus: dbri.c p9100.c

Log Message:
Expand PMF_FN_* macros.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/sys/dev/sbus/dbri.c
cvs rdiff -u -r1.50 -r1.51 src/sys/dev/sbus/p9100.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/arch/mips/mips

2010-01-08 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Fri Jan  8 22:15:13 UTC 2010

Modified Files:
src/sys/arch/mips/mips [matt-nb5-mips64]: trap.c

Log Message:
In stacktrace_subr, use proper formats.


To generate a diff of this commit:
cvs rdiff -u -r1.217.12.12 -r1.217.12.13 src/sys/arch/mips/mips/trap.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/time

2010-01-08 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Fri Jan  8 23:14:13 UTC 2010

Modified Files:
src/lib/libc/time: tzfile.5 zdump.8

Log Message:
Fix mdoc(7)/man(7) mix up.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/lib/libc/time/tzfile.5
cvs rdiff -u -r1.7 -r1.8 src/lib/libc/time/zdump.8

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



CVS commit: src/libexec/tftpd

2010-01-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Fri Jan  8 23:25:07 UTC 2010

Modified Files:
src/libexec/tftpd: tftpd.8

Log Message:
Sort options in SYNOPSIS.
New sentence, new line.
Use only mdoc markup.
Make HTML-ready.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/libexec/tftpd/tftpd.8

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



CVS commit: src/libexec/tftpd

2010-01-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Fri Jan  8 23:27:08 UTC 2010

Modified Files:
src/libexec/tftpd: tftpd.8 tftpd.c

Log Message:
Sync usage with man page.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/libexec/tftpd/tftpd.8
cvs rdiff -u -r1.33 -r1.34 src/libexec/tftpd/tftpd.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/include

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 00:55:56 UTC 2010

Modified Files:
src/include [netbsd-5]: paths.h

Log Message:
Pull up following revision(s) (requested by pooka in ticket #1205):
include/paths.h: revision 1.35
+_PATH_PUD


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.34.4.1 src/include/paths.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/dev/pud

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:02:23 UTC 2010

Modified Files:
src/sys/dev/pud [netbsd-5]: pud_dev.c

Log Message:
Pull up following revision(s) (requested by pooka in ticket #1206):
sys/dev/pud/pud_dev.c: revision 1.6 via patch
Handle DIOCGPART in-kernel because a userspace server doesn't have
a chance in phobos of handling it.  This makes it possible to do a
kernel mount of most file systems with the block device backed by
a pud userspace server.
-  i'm too young to compile
-  hey, no tty rough
-  hurd me plenty
= abstraction-violence
-  nightmare!


To generate a diff of this commit:
cvs rdiff -u -r1.4.34.1 -r1.4.34.2 src/sys/dev/pud/pud_dev.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/fdisk

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:04:48 UTC 2010

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

Log Message:
Pull up following revision(s) (requested by dsl in ticket #1207):
sbin/fdisk/fdisk.c: revision 1.128
Editing partitions larger than 1TB works better if 'decimal' returns
64 bit integer values!


To generate a diff of this commit:
cvs rdiff -u -r1.116.6.2 -r1.116.6.3 src/sbin/fdisk/fdisk.c

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



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

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:10:53 UTC 2010

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

Log Message:
Pull up following revision(s) (requested by dsl in ticket #1208):
sys/kern/kern_event.c: revision 1.69
Use sizeof correct type, not pointer to wrong type.
Fixes PR/42498.
This has been wrong since the initial import!


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

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:15:43 UTC 2010

Modified Files:
src/dist/pdisk [netbsd-5]: pdisk.c
src/distrib/amiga/floppies/upgr [netbsd-5]: upgrade.sh
src/sbin/newfs_udf [netbsd-5]: newfs_udf.8 udf_create.c

Log Message:
Pull up following revision(s) (requested by mbalmer in ticket #1209):
dist/pdisk/pdisk.c: revision 1.18
distrib/amiga/floppies/upgr/upgrade.sh: revision 1.9
sbin/newfs_udf/newfs_udf.8: revision 1.6
sbin/newfs_udf/udf_create.c: revision 1.17
Fix typo in command output.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.17.26.1 src/dist/pdisk/pdisk.c
cvs rdiff -u -r1.8 -r1.8.40.1 src/distrib/amiga/floppies/upgr/upgrade.sh
cvs rdiff -u -r1.4.4.1 -r1.4.4.2 src/sbin/newfs_udf/newfs_udf.8
cvs rdiff -u -r1.12.4.3 -r1.12.4.4 src/sbin/newfs_udf/udf_create.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/pci

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:18:39 UTC 2010

Modified Files:
src/sys/dev/pci [netbsd-5]: viaide.c

Log Message:
Pull up following revision(s) (requested by tsutsui in ticket #1210):
sys/dev/pci/viaide.c: revision 1.65
Don't forget to initialize data32iot and data32ioh in via_sata_chip_map_new().
This makes 32bit UDMA xfer work properly on VIA VT6421.


To generate a diff of this commit:
cvs rdiff -u -r1.57.4.1 -r1.57.4.2 src/sys/dev/pci/viaide.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/calendar/calendars

2010-01-08 Thread John Nemeth
Module Name:src
Committed By:   jnemeth
Date:   Sat Jan  9 01:24:18 UTC 2010

Modified Files:
src/usr.bin/calendar/calendars: calendar.birthday

Log Message:
add Stephen Hawking, 68 today


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/usr.bin/calendar/calendars/calendar.birthday

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

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:25:11 UTC 2010

Modified Files:
src/sys/dev/dkwedge [netbsd-5]: dk.c

Log Message:
Pull up following revision(s) (requested by jakllsch in ticket #1213):
sys/dev/dkwedge/dk.c: revision 1.52
Implement and use a dkminphys() that calls the parent device's minphys
function with b_dev temporarily adjusted to the parent device's dev_t.
Fixes PR/37390.


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.42.6.1 src/sys/dev/dkwedge/dk.c

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



CVS commit: [netbsd-5] xsrc/external/mit/xf86-video-radeonhd/dist/src

2010-01-08 Thread Soren Jacobsen
Module Name:xsrc
Committed By:   snj
Date:   Sat Jan  9 01:27:39 UTC 2010

Modified Files:
xsrc/external/mit/xf86-video-radeonhd/dist/src [netbsd-5]: rhd_id.c

Log Message:
Pull up following revision(s) (requested by jakllsch in ticket #1214):
external/mit/xf86-video-radeonhd/dist/src/rhd_id.c: revision 1.2
Fix incorrect LIST_END macro.
From xf86-video-radeonhd commit cc1bb50bb44354be7793e4fc45c625746571ec96.
Fixes PR/41950.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2.2.1 -r1.1.1.2.2.2 \
xsrc/external/mit/xf86-video-radeonhd/dist/src/rhd_id.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

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:30:14 UTC 2010

Modified Files:
src/share/man/man4/man4.sparc64 [netbsd-5]: lom.4
src/sys/arch/sparc64/dev [netbsd-5]: lom.c

Log Message:
Pull up following revision(s) (requested by nakayama in ticket #1216):
share/man/man4/man4.sparc64/lom.4: revision 1.4
sys/arch/sparc64/dev/lom.c: revision 1.5
Make fault LED and alarms status changeable via sysctl(8).
The sysctl entries are created under the hw.lomN MIB.


To generate a diff of this commit:
cvs rdiff -u -r1.2.2.3 -r1.2.2.4 src/share/man/man4/man4.sparc64/lom.4
cvs rdiff -u -r1.1.2.4 -r1.1.2.5 src/sys/arch/sparc64/dev/lom.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/utils/sysinst

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:31:57 UTC 2010

Modified Files:
src/distrib/utils/sysinst [netbsd-5]: disks.c

Log Message:
Pull up following revision(s) (requested by cegger in ticket #1217):
distrib/utils/sysinst/disks.c: revision 1.108
When creating /etc/fstab:
for the first swap partition use type sw,dp instead of sw, so dump device
gets configured correctly if swap is not on the second partition.
Fixes PR install/42148.


To generate a diff of this commit:
cvs rdiff -u -r1.100.2.5 -r1.100.2.6 src/distrib/utils/sysinst/disks.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/pci

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:35:16 UTC 2010

Modified Files:
src/sys/dev/pci [netbsd-5]: auich.c

Log Message:
Pull up following revision(s) (requested by jakllsch in ticket #1218):
sys/dev/pci/auich.c: revision 1.133
Ensure that the memory or i/o space we need is accessible at attach
and resume.
Rework register mapping code path, using 'goto', so duplicate code
is reduced.
I've tested this on nvidia and sis auich(4)-compatible controllers.
In addition this change is reported to fix PR/39652.


To generate a diff of this commit:
cvs rdiff -u -r1.127 -r1.127.10.1 src/sys/dev/pci/auich.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-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:37:04 UTC 2010

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

Log Message:
Pull up following revision(s) (requested by jakllsch in ticket #1219):
sys/dev/usb/uhidev.c: revision 1.46
The Dell DRAC5 gives us a zero-length report immediately following
a normal report.  Thus, ignore zero-length reports.  Move some related
report size insanity checking into the UHIDEV_DEBUG case.
Should fix PR/39911.


To generate a diff of this commit:
cvs rdiff -u -r1.42.8.1 -r1.42.8.2 src/sys/dev/usb/uhidev.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/arch/sparc/sparc

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:41:58 UTC 2010

Modified Files:
src/sys/arch/sparc/sparc [netbsd-5]: vm_machdep.c

Log Message:
Pull up following revision(s) (requested by mrg in ticket #1223):
sys/arch/sparc/sparc/vm_machdep.c: revision 1.99
sync this a little with sparc64: use cpu_setfunc() at the end of cpu_lwp_fork()


To generate a diff of this commit:
cvs rdiff -u -r1.95 -r1.95.4.1 src/sys/arch/sparc/sparc/vm_machdep.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/arch/sparc

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:43:51 UTC 2010

Modified Files:
src/sys/arch/sparc/include [netbsd-5]: cpu.h
src/sys/arch/sparc/sparc [netbsd-5]: locore.s vm_machdep.c

Log Message:
Pull up following revision(s) (requested by mrg in ticket #1223):
sys/arch/sparc/include/cpu.h: revision 1.86
sys/arch/sparc/sparc/locore.s: revision 1.246
sys/arch/sparc/sparc/vm_machdep.c: revision 1.100
fix up cpu_setfunc() as noted by uwe:
- don't call lwp_startup for cpu_setfunc() users
- introduce lwp_setfunc_trampoline instead
- no need to set the new lwp for setfunc


To generate a diff of this commit:
cvs rdiff -u -r1.84 -r1.84.14.1 src/sys/arch/sparc/include/cpu.h
cvs rdiff -u -r1.244 -r1.244.8.1 src/sys/arch/sparc/sparc/locore.s
cvs rdiff -u -r1.95.4.1 -r1.95.4.2 src/sys/arch/sparc/sparc/vm_machdep.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/dist/nvi

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:53:04 UTC 2010

Modified Files:
src/dist/nvi/common [netbsd-5]: cut.c cut.h multibyte.h
src/dist/nvi/ex [netbsd-5]: ex.c ex_subst.c ex_usage.c
src/dist/nvi/vi [netbsd-5]: v_ulcase.c

Log Message:
Pull up following revision(s) (requested by mlelstv in ticket #1224):
dist/nvi/common/cut.c: revision 1.3
dist/nvi/common/cut.h: revision 1.3
dist/nvi/common/multibyte.h: revision 1.5
dist/nvi/ex/ex.c: revision 1.6
dist/nvi/ex/ex_subst.c: revision 1.3
dist/nvi/ex/ex_usage.c: revision 1.4 via patch
dist/nvi/vi/v_ulcase.c: revision 1.2
Use wide char versions of tolower/toupper/islower/isupper where
appropriate. Fixes ~ command on big-endian architectures.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2.6.1 -r1.1.1.2.6.2 src/dist/nvi/common/cut.c \
src/dist/nvi/common/cut.h
cvs rdiff -u -r1.1.1.2.6.3 -r1.1.1.2.6.4 src/dist/nvi/common/multibyte.h
cvs rdiff -u -r1.1.1.2.6.2 -r1.1.1.2.6.3 src/dist/nvi/ex/ex.c
cvs rdiff -u -r1.1.1.2.6.1 -r1.1.1.2.6.2 src/dist/nvi/ex/ex_subst.c \
src/dist/nvi/ex/ex_usage.c
cvs rdiff -u -r1.1.1.2 -r1.1.1.2.6.1 src/dist/nvi/vi/v_ulcase.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/pci

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:56:51 UTC 2010

Modified Files:
src/sys/dev/pci [netbsd-5]: viaide.c

Log Message:
Pull up following revision(s) (requested by mrg in ticket #1227):
sys/dev/pci/viaide.c: revision 1.66
enable mem space if it isn't already enabled.  several bioses leave
this not enabled, and viaide kind of depends upon it.
fixes viaide(4) on several machines.
idea from PR 38011, but reworked a little.


To generate a diff of this commit:
cvs rdiff -u -r1.57.4.2 -r1.57.4.3 src/sys/dev/pci/viaide.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

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 02:03:58 UTC 2010

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

Log Message:
Tickets 1204-1210, 1212-1214, 1216-1219, 1223, 1224, 1227, and 1228.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.170 -r1.1.2.171 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: [netbsd-5-0] src/doc

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 02:04:18 UTC 2010

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

Log Message:
Ticket 1208.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.38 -r1.1.2.39 src/doc/CHANGES-5.0.2

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

2010-01-08 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sat Jan  9 05:54:40 UTC 2010

Modified Files:
src/sys/uvm [matt-nb5-mips64]: uvm_km.c

Log Message:
If PMAP_ALLOC_POOLPAGE is defined use it instead of uvm_pagealloc


To generate a diff of this commit:
cvs rdiff -u -r1.101.4.2 -r1.101.4.2.4.1 src/sys/uvm/uvm_km.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/arch/mips/mips

2010-01-08 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sat Jan  9 06:01:18 UTC 2010

Modified Files:
src/sys/arch/mips/mips [matt-nb5-mips64]: mips_machdep.c pmap.c

Log Message:
On _LP64, allocate kernel memory from the first 4GB.  Otherwise first 512MB.
Until we get full bounce buffer support, this should with device that only
support 4GB addresses.


To generate a diff of this commit:
cvs rdiff -u -r1.205.4.1.2.1.2.20 -r1.205.4.1.2.1.2.21 \
src/sys/arch/mips/mips/mips_machdep.c
cvs rdiff -u -r1.179.16.7 -r1.179.16.8 src/sys/arch/mips/mips/pmap.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/crunch/crunchgen

2010-01-08 Thread KIYOHARA Takashi
Module Name:src
Committed By:   kiyohara
Date:   Sat Jan  9 06:37:57 UTC 2010

Modified Files:
src/usr.bin/crunch/crunchgen: crunchgen.c

Log Message:
Fix a bug.
  always mkdir for 'objs' and 'objdir' when NEW_TOOLCHAIN.


To generate a diff of this commit:
cvs rdiff -u -r1.75 -r1.76 src/usr.bin/crunch/crunchgen/crunchgen.c

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