CVS commit: src/sys/dev/ieee1394

2010-03-29 Thread KIYOHARA Takashi
Module Name:src
Committed By:   kiyohara
Date:   Mon Mar 29 07:34:02 UTC 2010

Modified Files:
src/sys/dev/ieee1394: firewire.c fwohci.c

Log Message:
Remove more my debugging code.


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/sys/dev/ieee1394/firewire.c
cvs rdiff -u -r1.122 -r1.123 src/sys/dev/ieee1394/fwohci.c

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



CVS commit: src/usr.sbin/fwctl

2010-03-29 Thread Christoph Egger
Module Name:src
Committed By:   cegger
Date:   Mon Mar 29 10:49:34 UTC 2010

Modified Files:
src/usr.sbin/fwctl: fwcontrol.c

Log Message:
make this build again after ieee1394 update


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/usr.sbin/fwctl/fwcontrol.c

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



CVS commit: src/share/examples/rump/virtual_ip_router

2010-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Mon Mar 29 11:01:17 UTC 2010

Modified Files:
src/share/examples/rump/virtual_ip_router: rumprouter.c

Log Message:
fix typo in, um, copyright.

spotted by a keen-eyed enthusiast ;)


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 \
src/share/examples/rump/virtual_ip_router/rumprouter.c

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



CVS commit: src/sys/compat/netbsd32

2010-03-29 Thread Nicolas Joly
Module Name:src
Committed By:   njoly
Date:   Mon Mar 29 11:39:45 UTC 2010

Modified Files:
src/sys/compat/netbsd32: netbsd32_compat_50.c netbsd32_time.c

Log Message:
Make compat netbsd32 clock_getres copyout the netbsd32 timespec
structure, not the native one.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/compat/netbsd32/netbsd32_compat_50.c
cvs rdiff -u -r1.37 -r1.38 src/sys/compat/netbsd32/netbsd32_time.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-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Mon Mar 29 13:11:34 UTC 2010

Modified Files:
src/sys/fs/cd9660: cd9660_vnops.c
src/sys/fs/efs: efs_vnops.c
src/sys/fs/hfs: hfs_vnops.c
src/sys/fs/puffs: puffs_vnops.c
src/sys/fs/tmpfs: tmpfs_fifoops.h tmpfs_vnops.c
src/sys/kern: vfs_vnops.c
src/sys/miscfs/fifofs: fifo.h fifo_vnops.c
src/sys/nfs: nfs_vnops.c
src/sys/sys: vnode.h
src/sys/ufs/ext2fs: ext2fs_vnops.c
src/sys/ufs/ffs: ffs_vnops.c
src/sys/ufs/lfs: lfs_vnops.c
src/sys/ufs/ufs: ufs_vnops.c

Log Message:
Stop exposing fifofs internals and leave only fifo_vnodeop_p visible.


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/sys/fs/cd9660/cd9660_vnops.c
cvs rdiff -u -r1.20 -r1.21 src/sys/fs/efs/efs_vnops.c
cvs rdiff -u -r1.16 -r1.17 src/sys/fs/hfs/hfs_vnops.c
cvs rdiff -u -r1.143 -r1.144 src/sys/fs/puffs/puffs_vnops.c
cvs rdiff -u -r1.6 -r1.7 src/sys/fs/tmpfs/tmpfs_fifoops.h
cvs rdiff -u -r1.67 -r1.68 src/sys/fs/tmpfs/tmpfs_vnops.c
cvs rdiff -u -r1.169 -r1.170 src/sys/kern/vfs_vnops.c
cvs rdiff -u -r1.25 -r1.26 src/sys/miscfs/fifofs/fifo.h
cvs rdiff -u -r1.67 -r1.68 src/sys/miscfs/fifofs/fifo_vnops.c
cvs rdiff -u -r1.282 -r1.283 src/sys/nfs/nfs_vnops.c
cvs rdiff -u -r1.214 -r1.215 src/sys/sys/vnode.h
cvs rdiff -u -r1.91 -r1.92 src/sys/ufs/ext2fs/ext2fs_vnops.c
cvs rdiff -u -r1.113 -r1.114 src/sys/ufs/ffs/ffs_vnops.c
cvs rdiff -u -r1.226 -r1.227 src/sys/ufs/lfs/lfs_vnops.c
cvs rdiff -u -r1.180 -r1.181 src/sys/ufs/ufs/ufs_vnops.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

2010-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Mon Mar 29 13:20:31 UTC 2010

Modified Files:
src/sys/rump/fs: Makefile.rumpfs
src/sys/rump/librump/rumpvfs: Makefile.rumpvfs
Added Files:
src/sys/rump/fs/lib/libfifovfs: Makefile shlib_version
Removed Files:
src/sys/rump/librump/rumpvfs: vfsops_stub.c

Log Message:
Support fifofs in rump.  Do not include it in rumpvfs directly,
since it involves some very non-fs'y components like sockets and
local domain networking.  Also (for better or worse?), call it
rump*v*fs_fifofs instead of rumpfs_fifofs, since it does not really
provide a file system driver.

XXX: uses duplicate common symbols and functionality depends on
link order ... (but at least it works better than before this change)


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/rump/fs/Makefile.rumpfs
cvs rdiff -u -r0 -r1.1 src/sys/rump/fs/lib/libfifovfs/Makefile \
src/sys/rump/fs/lib/libfifovfs/shlib_version
cvs rdiff -u -r1.25 -r1.26 src/sys/rump/librump/rumpvfs/Makefile.rumpvfs
cvs rdiff -u -r1.8 -r0 src/sys/rump/librump/rumpvfs/vfsops_stub.c

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-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Mon Mar 29 13:23:44 UTC 2010

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

Log Message:
+rumpvfs_fifofs


To generate a diff of this commit:
cvs rdiff -u -r1.206 -r1.207 src/distrib/sets/lists/base/shl.elf
cvs rdiff -u -r1.527 -r1.528 src/distrib/sets/lists/base/shl.mi
cvs rdiff -u -r1.1418 -r1.1419 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.108 -r1.109 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/tests/fs/ffs

2010-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Mon Mar 29 13:26:32 UTC 2010

Modified Files:
src/tests/fs/ffs: Atffile Makefile
Added Files:
src/tests/fs/ffs: t_fifos.c

Log Message:
regression test for fifos on ffs

XXX: same test apart for mount/unmount could be used on other
fifo-supporting file systems (r/w support required, though).


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/fs/ffs/Atffile
cvs rdiff -u -r1.5 -r1.6 src/tests/fs/ffs/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/fs/ffs/t_fifos.c

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

2010-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Mon Mar 29 13:27:53 UTC 2010

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

Log Message:
+ ffs/t_fifos


To generate a diff of this commit:
cvs rdiff -u -r1.63 -r1.64 src/distrib/sets/lists/tests/mi

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-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Mon Mar 29 13:41:06 UTC 2010

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

Log Message:
5.99.25: fifofs stopped exporting its private parts


To generate a diff of this commit:
cvs rdiff -u -r1.359 -r1.360 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/sys/compat

2010-03-29 Thread Nicolas Joly
Module Name:src
Committed By:   njoly
Date:   Mon Mar 29 15:34:07 UTC 2010

Modified Files:
src/sys/compat/linux/common: linux_time.c
src/sys/compat/linux32/common: linux32_time.c
src/sys/compat/netbsd32: netbsd32_compat_50.c netbsd32_time.c

Log Message:
Convert linux/linux32/netbsd32 clock_settime syscalls, to use the
common clock_settime1() function.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/compat/linux/common/linux_time.c
cvs rdiff -u -r1.29 -r1.30 src/sys/compat/linux32/common/linux32_time.c
cvs rdiff -u -r1.12 -r1.13 src/sys/compat/netbsd32/netbsd32_compat_50.c
cvs rdiff -u -r1.38 -r1.39 src/sys/compat/netbsd32/netbsd32_time.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-03-29 Thread Takahiro Kambe
Module Name:src
Committed By:   taca
Date:   Mon Mar 29 15:44:53 UTC 2010

Modified Files:
src/doc: 3RDPARTY

Log Message:
OpenSSL 1.0.0 released!


To generate a diff of this commit:
cvs rdiff -u -r1.753 -r1.754 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/sys/dev/ic

2010-03-29 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Mon Mar 29 15:51:03 UTC 2010

Modified Files:
src/sys/dev/ic: ne2000.c

Log Message:
Don't warn about DMA timeout during probe.


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

2010-03-29 Thread David Young
Module Name:src
Committed By:   dyoung
Date:   Mon Mar 29 16:35:59 UTC 2010

Modified Files:
src/sys/dev/acpi: acpi.c acpi_ec.c

Log Message:
Attach acpiecdt with acpibus_attach_args.  Sverre Froyen reports that
this helps his Thinkpad boot again.


To generate a diff of this commit:
cvs rdiff -u -r1.162 -r1.163 src/sys/dev/acpi/acpi.c
cvs rdiff -u -r1.63 -r1.64 src/sys/dev/acpi/acpi_ec.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/fs

2010-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Mon Mar 29 18:12:24 UTC 2010

Modified Files:
src/sys/rump/fs: Makefile.rumpfs
Added Files:
src/sys/rump/fs/lib/liblayervfs: Makefile shlib_version
src/sys/rump/fs/lib/libunion: Makefile shlib_version

Log Message:
Support unionfs (and layervfs, which is required for unionfs).


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/rump/fs/Makefile.rumpfs
cvs rdiff -u -r0 -r1.1 src/sys/rump/fs/lib/liblayervfs/Makefile \
src/sys/rump/fs/lib/liblayervfs/shlib_version
cvs rdiff -u -r0 -r1.1 src/sys/rump/fs/lib/libunion/Makefile \
src/sys/rump/fs/lib/libunion/shlib_version

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-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Mon Mar 29 18:15:32 UTC 2010

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

Log Message:
+union and layerfs


To generate a diff of this commit:
cvs rdiff -u -r1.207 -r1.208 src/distrib/sets/lists/base/shl.elf
cvs rdiff -u -r1.528 -r1.529 src/distrib/sets/lists/base/shl.mi
cvs rdiff -u -r1.1419 -r1.1420 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.109 -r1.110 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/tests/fs

2010-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Mon Mar 29 18:19:19 UTC 2010

Modified Files:
src/tests/fs: Atffile Makefile
Added Files:
src/tests/fs/union: Atffile Makefile t_basic.c

Log Message:
Add basic union test.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/tests/fs/Atffile src/tests/fs/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/fs/union/Atffile src/tests/fs/union/Makefile \
src/tests/fs/union/t_basic.c

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

2010-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Mon Mar 29 18:21:13 UTC 2010

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

Log Message:
jump through the setlist hoops for adding a new test


To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 src/distrib/sets/lists/tests/mi

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-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Mon Mar 29 18:21:29 UTC 2010

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

Log Message:
.. then jump through the mtree hoops for adding a test


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 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/distrib/sets/lists/tests

2010-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Mon Mar 29 18:49:02 UTC 2010

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

Log Message:
Whoops, missed Atffile in previous.  shame on me.


To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 src/distrib/sets/lists/tests/mi

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/evbmips/conf

2010-03-29 Thread Cliff Neighbors
Module Name:src
Committed By:   cliff
Date:   Mon Mar 29 23:31:16 UTC 2010

Modified Files:
src/sys/arch/evbmips/conf [matt-nb5-mips64]: std.rmixl

Log Message:
- turn on options MIPS64_XLR


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.3 -r1.1.2.4 src/sys/arch/evbmips/conf/std.rmixl

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

2010-03-29 Thread Cliff Neighbors
Module Name:src
Committed By:   cliff
Date:   Mon Mar 29 23:31:38 UTC 2010

Modified Files:
src/sys/arch/mips/rmi [matt-nb5-mips64]: rmixlvar.h

Log Message:
- add inline cpu_rmixl_chip_type()


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.15 -r1.1.2.16 src/sys/arch/mips/rmi/rmixlvar.h

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/evbmips/rmixl

2010-03-29 Thread Cliff Neighbors
Module Name:src
Committed By:   cliff
Date:   Mon Mar 29 23:32:02 UTC 2010

Modified Files:
src/sys/arch/evbmips/rmixl [matt-nb5-mips64]: machdep.c

Log Message:
- add new recognized psb (firmware) ID 0x4b8ead310056
- pcie physical regions discovery is moved to rmixl_pcie.c
and is conditional on RMI chip type (XLR has no PCIE)


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.25 -r1.1.2.26 src/sys/arch/evbmips/rmixl/machdep.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/rmi

2010-03-29 Thread Cliff Neighbors
Module Name:src
Committed By:   cliff
Date:   Mon Mar 29 23:32:42 UTC 2010

Modified Files:
src/sys/arch/mips/rmi [matt-nb5-mips64]: rmixl_pcievar.h

Log Message:
- add extern decl/prototype for rmixl_physaddr_init_pcie()


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.4 -r1.1.2.5 src/sys/arch/mips/rmi/rmixl_pcievar.h

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

2010-03-29 Thread Cliff Neighbors
Module Name:src
Committed By:   cliff
Date:   Mon Mar 29 23:33:00 UTC 2010

Modified Files:
src/sys/arch/mips/include [matt-nb5-mips64]: cpuregs.h

Log Message:
- fix XLR Pid defines; RMI Pid meaning depends on
the Rev value (Stepping B2 or C4)


To generate a diff of this commit:
cvs rdiff -u -r1.74.28.16 -r1.74.28.17 src/sys/arch/mips/include/cpuregs.h

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-03-29 Thread Cliff Neighbors
Module Name:src
Committed By:   cliff
Date:   Mon Mar 29 23:33:37 UTC 2010

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

Log Message:
- add a cputab[] entry for RMI XLR732 (other XLR models are TBD)


To generate a diff of this commit:
cvs rdiff -u -r1.205.4.1.2.1.2.41 -r1.205.4.1.2.1.2.42 \
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.



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

2010-03-29 Thread Cliff Neighbors
Module Name:src
Committed By:   cliff
Date:   Mon Mar 29 23:34:09 UTC 2010

Modified Files:
src/sys/arch/mips/rmi [matt-nb5-mips64]: rmixl_fmnvar.h

Log Message:
- logical station names are now chip-type-specific
- RMIXL_FMN_NSTID is the max number of station for any RMIXL chip type


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/sys/arch/mips/rmi/rmixl_fmnvar.h

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

2010-03-29 Thread Cliff Neighbors
Module Name:src
Committed By:   cliff
Date:   Mon Mar 29 23:34:32 UTC 2010

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

Log Message:
- use the new chip-type-specific names for logical station IDs
- dimension fmn_intrhand[] by max number of station for any RMIXL chip type
- add FMN station tables and info for XLR; these are untested.
- rmixl_fmn_init_core() now calls chip-type-specific init subfunctions
which just grab the appropriate station table and info strutures.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/sys/arch/mips/rmi/rmixl_fmn.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/rmi

2010-03-29 Thread Cliff Neighbors
Module Name:src
Committed By:   cliff
Date:   Mon Mar 29 23:34:58 UTC 2010

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

Log Message:
- cpu_setup_trampoline_fmn() is #ifdef NOTYET until we make it work...


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.8 -r1.1.2.9 src/sys/arch/mips/rmi/rmixl_cpu.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/rmi

2010-03-29 Thread Cliff Neighbors
Module Name:src
Committed By:   cliff
Date:   Mon Mar 29 23:35:25 UTC 2010

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

Log Message:
- add IRT-based interrupt names for XLR
- rmixl_intr_string() calls chip-type-specific functions
to get appropriate names table


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.15 -r1.1.2.16 src/sys/arch/mips/rmi/rmixl_intr.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/rmi

2010-03-29 Thread Cliff Neighbors
Module Name:src
Committed By:   cliff
Date:   Mon Mar 29 23:32:21 UTC 2010

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

Log Message:
- rmixl_physaddr_init_pcie discovers PCIE physical address regions from BARs


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.9 -r1.1.2.10 src/sys/arch/mips/rmi/rmixl_pcie.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/evbmips/rmixl

2010-03-29 Thread Cliff Neighbors
Module Name:src
Committed By:   cliff
Date:   Mon Mar 29 23:40:58 UTC 2010

Modified Files:
src/sys/arch/evbmips/rmixl [matt-nb5-mips64]: machdep.c

Log Message:
turn off MACHDEP_DEBUG


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.26 -r1.1.2.27 src/sys/arch/evbmips/rmixl/machdep.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/fs

2010-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Tue Mar 30 00:59:07 UTC 2010

Modified Files:
src/sys/rump/fs: Makefile.rumpfs
Added Files:
src/sys/rump/fs/lib/libnullfs: Makefile shlib_version
src/sys/rump/fs/lib/libumapfs: Makefile shlib_version

Log Message:
support nullfs and umapfs


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sys/rump/fs/Makefile.rumpfs
cvs rdiff -u -r0 -r1.1 src/sys/rump/fs/lib/libnullfs/Makefile \
src/sys/rump/fs/lib/libnullfs/shlib_version
cvs rdiff -u -r0 -r1.1 src/sys/rump/fs/lib/libumapfs/Makefile \
src/sys/rump/fs/lib/libumapfs/shlib_version

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-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Tue Mar 30 01:01:10 UTC 2010

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

Log Message:
add nullfs and umapfs to setlists


To generate a diff of this commit:
cvs rdiff -u -r1.208 -r1.209 src/distrib/sets/lists/base/shl.elf
cvs rdiff -u -r1.529 -r1.530 src/distrib/sets/lists/base/shl.mi
cvs rdiff -u -r1.1420 -r1.1421 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.110 -r1.111 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/tests/fs

2010-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Tue Mar 30 01:02:47 UTC 2010

Modified Files:
src/tests/fs: Makefile
Added Files:
src/tests/fs/nullfs: Atffile Makefile t_basic.c

Log Message:
Basic test for nullfs, which just checks that the two views act
somewhat sensibly.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tests/fs/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/fs/nullfs/Atffile \
src/tests/fs/nullfs/Makefile src/tests/fs/nullfs/t_basic.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

2010-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Tue Mar 30 01:05:28 UTC 2010

Modified Files:
src/tests/fs: Makefile
Added Files:
src/tests/fs/umapfs: Atffile Makefile t_basic.c

Log Message:
Add basic test for umapfs functionality.

XXX: the reverse mapping case (last subsubtest in t_basic) does
not make any sense, but apparently that how umapfs works.  I'm not
familiar enough with the code to determine if this is a wanted
feature or a pure and simple bug.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/tests/fs/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/fs/umapfs/Atffile \
src/tests/fs/umapfs/Makefile src/tests/fs/umapfs/t_basic.c

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



CVS commit: src

2010-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Tue Mar 30 01:11:18 UTC 2010

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

Log Message:
add nullfs/umapfs tests to setlists etc


To generate a diff of this commit:
cvs rdiff -u -r1.66 -r1.67 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.13 -r1.14 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/tests/fs

2010-03-29 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Tue Mar 30 01:40:29 UTC 2010

Modified Files:
src/tests/fs/nullfs: Makefile
src/tests/fs/umapfs: Makefile

Log Message:
anti-pasto


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/fs/nullfs/Makefile
cvs rdiff -u -r1.1 -r1.2 src/tests/fs/umapfs/Makefile

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



CVS commit: src/sys/arch/sparc64/sparc64

2010-03-29 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Tue Mar 30 01:50:03 UTC 2010

Modified Files:
src/sys/arch/sparc64/sparc64: pmap.c

Log Message:
fix a KASSERT() in the previous.  add a couple of comments.


To generate a diff of this commit:
cvs rdiff -u -r1.262 -r1.263 src/sys/arch/sparc64/sparc64/pmap.c

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



CVS commit: src/share/misc

2010-03-29 Thread Luke Mewburn
Module Name:src
Committed By:   lukem
Date:   Tue Mar 30 05:54:52 UTC 2010

Modified Files:
src/share/misc: acronyms

Log Message:
qft: quoted for truth


To generate a diff of this commit:
cvs rdiff -u -r1.186 -r1.187 src/share/misc/acronyms

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