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

2010-02-10 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Wed Feb 10 08:12:02 UTC 2010

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

Log Message:
Initial attempt to implement uvm_pageofzero_xip(), which returns a pointer
to a single read-only zeroed page.  This is meant to be used for XIP now.
Only compile tested.


To generate a diff of this commit:
cvs rdiff -u -r1.104 -r1.104.2.1 src/sys/uvm/uvm_km.c
cvs rdiff -u -r1.18 -r1.18.6.1 src/sys/uvm/uvm_km.h

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



CVS commit: src/usr.bin/tset

2010-02-10 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Wed Feb 10 10:33:45 UTC 2010

Modified Files:
src/usr.bin/tset: extern.h misc.c

Log Message:
Constify cat argument and tidy.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/usr.bin/tset/extern.h
cvs rdiff -u -r1.8 -r1.9 src/usr.bin/tset/misc.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/tset

2010-02-10 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Wed Feb 10 10:34:31 UTC 2010

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

Log Message:
Tidy defs.


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

2010-02-10 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Wed Feb 10 10:34:59 UTC 2010

Modified Files:
src/usr.bin/tset: set.c

Log Message:
We need to cap reset_file/init_file.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/usr.bin/tset/set.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/arch/arm/arm32

2010-02-10 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Wed Feb 10 12:53:26 UTC 2010

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

Log Message:
Start changing this to be ready for device page (XIP).  The basic rule is
device pages don't have struct vm_page * objects.  Instead per-page data
(mainly PV mappings) is rooted from the global struct vm_page_md array.

Convert 2 functions to take struct vm_page_md * instead of struct vm_page *.


To generate a diff of this commit:
cvs rdiff -u -r1.211 -r1.211.2.1 src/sys/arch/arm/arm32/pmap.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/arch/arm/arm32

2010-02-10 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Wed Feb 10 13:23:57 UTC 2010

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

Log Message:
Convert pmap_remove_pv() / pmap_modify_pv() to take struct vm_page_md *.


To generate a diff of this commit:
cvs rdiff -u -r1.211.2.1 -r1.211.2.2 src/sys/arch/arm/arm32/pmap.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/arch/arm/arm32

2010-02-10 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Wed Feb 10 13:26:22 UTC 2010

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

Log Message:
Convert pmap_enter_pv().


To generate a diff of this commit:
cvs rdiff -u -r1.211.2.2 -r1.211.2.3 src/sys/arch/arm/arm32/pmap.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/arch/arm/arm32

2010-02-10 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Wed Feb 10 13:58:08 UTC 2010

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

Log Message:
Convert pmap_enter() and pmap_vac_me_harder().


To generate a diff of this commit:
cvs rdiff -u -r1.211.2.3 -r1.211.2.4 src/sys/arch/arm/arm32/pmap.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-02-10 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Wed Feb 10 14:07:23 UTC 2010

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

Log Message:
Introduce VM_PAGE_TO_MD(); lookup vm_page_md from a given vm_page.


To generate a diff of this commit:
cvs rdiff -u -r1.59.2.7 -r1.59.2.8 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: [uebayasi-xip] src/sys/uvm

2010-02-10 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Wed Feb 10 14:11:32 UTC 2010

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

Log Message:
Oops fix a typo.  (My lapdog's k/b is dying.)


To generate a diff of this commit:
cvs rdiff -u -r1.59.2.8 -r1.59.2.9 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: [uebayasi-xip] src/sys

2010-02-10 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Wed Feb 10 14:18:31 UTC 2010

Modified Files:
src/sys/arch/arm/arm32 [uebayasi-xip]: pmap.c
src/sys/uvm [uebayasi-xip]: uvm_page.c uvm_page.h

Log Message:
Fix previous again  use VM_PAGE_TO_MD() where appropriate.


To generate a diff of this commit:
cvs rdiff -u -r1.211.2.4 -r1.211.2.5 src/sys/arch/arm/arm32/pmap.c
cvs rdiff -u -r1.153.2.10 -r1.153.2.11 src/sys/uvm/uvm_page.c
cvs rdiff -u -r1.59.2.9 -r1.59.2.10 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/wscons

2010-02-10 Thread Matthias Drochner
Module Name:src
Committed By:   drochner
Date:   Wed Feb 10 19:39:39 UTC 2010

Modified Files:
src/sys/dev/wscons: wsemul_vt100.c wsemul_vt100_chars.c
wsemul_vt100_keys.c wsemul_vt100_subr.c wsemul_vt100var.h
Added Files:
src/sys/dev/wscons: vt100_base.h

Log Message:
Allow big parts of the vt100 emulation code (what is in
wsemul_vt100_subr.c) to be used by alternative terminal emulators
(which are not in-tree yet but can be loaded as LKMs).
For this, split out that part of the state structure which is used
by the sharable code and include that in the original vt100 state.
This is only a query-replace and sed(1) job for now, it makes sense
to rearrange things a bit so that even more code can be changed --
will do so later.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/sys/dev/wscons/vt100_base.h
cvs rdiff -u -r1.31 -r1.32 src/sys/dev/wscons/wsemul_vt100.c
cvs rdiff -u -r1.12 -r1.13 src/sys/dev/wscons/wsemul_vt100_chars.c
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/wscons/wsemul_vt100_keys.c
cvs rdiff -u -r1.19 -r1.20 src/sys/dev/wscons/wsemul_vt100_subr.c
cvs rdiff -u -r1.13 -r1.14 src/sys/dev/wscons/wsemul_vt100var.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/ic

2010-02-10 Thread Matthias Drochner
Module Name:src
Committed By:   drochner
Date:   Wed Feb 10 19:45:30 UTC 2010

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

Log Message:
add some more mappings from punctuation and accented characters to
more or less adequate replacements in the builtin IBM character set


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/dev/ic/pcdisplay_chars.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-02-10 Thread Cliff Neighbors
Module Name:src
Committed By:   cliff
Date:   Wed Feb 10 19:45:48 UTC 2010

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

Log Message:
save gp and t8 before callback to firmware


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.3 -r1.1.2.4 src/sys/arch/mips/rmi/rmixl_subr.S

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

2010-02-10 Thread Antoine Reilles
Module Name:src
Committed By:   tonio
Date:   Wed Feb 10 19:54:36 UTC 2010

Modified Files:
src/sys/arch/i386/conf: ALL GENERIC

Log Message:
Fix typo in TEMPer comment, spotted by Patrick Welche


To generate a diff of this commit:
cvs rdiff -u -r1.236 -r1.237 src/sys/arch/i386/conf/ALL
cvs rdiff -u -r1.966 -r1.967 src/sys/arch/i386/conf/GENERIC

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



CVS commit: src/sys/arch/hp700/dev

2010-02-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Feb 10 20:32:03 UTC 2010

Modified Files:
src/sys/arch/hp700/dev: mem.c

Log Message:
Wrap long lines.


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

2010-02-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Feb 10 20:32:34 UTC 2010

Modified Files:
src/sys/arch/hp700/dev: mongoose.c

Log Message:
Whitespace.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/hp700/dev/mongoose.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/hp700/dev

2010-02-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Feb 10 20:39:04 UTC 2010

Modified Files:
src/sys/arch/hp700/dev: dino.c

Log Message:
Replace a magic constant with a define.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/hp700/dev/dino.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/hp700/dev

2010-02-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Feb 10 20:44:14 UTC 2010

Modified Files:
src/sys/arch/hp700/dev: pdc.c

Log Message:
G/C CONADDR


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/hp700/dev/pdc.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/hp700/dev

2010-02-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Feb 10 20:45:35 UTC 2010

Modified Files:
src/sys/arch/hp700/dev: pdc.c

Log Message:
Use Debugger instead of hand crafted asm.


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/hp700/dev/pdc.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/hppa/hppa

2010-02-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Feb 10 20:49:58 UTC 2010

Modified Files:
src/sys/arch/hppa/hppa: trap.c

Log Message:
Minor tweaks.


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

2010-02-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Feb 10 20:51:23 UTC 2010

Modified Files:
src/sys/arch/hppa/hppa: trap.c

Log Message:
Reformat a comment.


To generate a diff of this commit:
cvs rdiff -u -r1.73 -r1.74 src/sys/arch/hppa/hppa/trap.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/hppa/hppa

2010-02-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Feb 10 20:52:35 UTC 2010

Modified Files:
src/sys/arch/hppa/hppa: trap.c

Log Message:
Remove a cast by fixing a printf format.


To generate a diff of this commit:
cvs rdiff -u -r1.74 -r1.75 src/sys/arch/hppa/hppa/trap.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-02-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Feb 10 20:54:47 UTC 2010

Modified Files:
src/sys/arch/hppa/hppa: trap.c
src/sys/dev/wscons: wsemul_vt100.c

Log Message:
Oops. Whitespace in previous.


To generate a diff of this commit:
cvs rdiff -u -r1.75 -r1.76 src/sys/arch/hppa/hppa/trap.c
cvs rdiff -u -r1.32 -r1.33 src/sys/dev/wscons/wsemul_vt100.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/wscons

2010-02-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Feb 10 22:25:08 UTC 2010

Modified Files:
src/sys/dev/wscons: wsemul_vt100.c

Log Message:
Remove accidental commit.


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/sys/dev/wscons/wsemul_vt100.c

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



CVS commit: src/sys/ufs/ffs

2010-02-10 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Thu Feb 11 00:06:16 UTC 2010

Modified Files:
src/sys/ufs/ffs: ffs_vfsops.c

Log Message:
There is no code left that uses disk size data, so don't query it.
This also failed when querying the simulated block device from mfs.
Fixes PR kern/42782.


To generate a diff of this commit:
cvs rdiff -u -r1.257 -r1.258 src/sys/ufs/ffs/ffs_vfsops.c

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



CVS commit: xsrc/external/mit/xf86-video-suncg14/dist

2010-02-10 Thread Michael Lorenz
Module Name:xsrc
Committed By:   macallan
Date:   Thu Feb 11 00:16:41 UTC 2010

Update of /cvsroot/xsrc/external/mit/xf86-video-suncg14/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv4491

Log Message:
suncg14 driver, from Xorg

Status:

Vendor Tag: XORG
Release Tags:   SUNCG14-1-1-0

N xsrc/external/mit/xf86-video-suncg14/dist/depcomp
N xsrc/external/mit/xf86-video-suncg14/dist/config.guess
N xsrc/external/mit/xf86-video-suncg14/dist/COPYING
N xsrc/external/mit/xf86-video-suncg14/dist/ltmain.sh
N xsrc/external/mit/xf86-video-suncg14/dist/Makefile.in
N xsrc/external/mit/xf86-video-suncg14/dist/missing
N xsrc/external/mit/xf86-video-suncg14/dist/Makefile.am
N xsrc/external/mit/xf86-video-suncg14/dist/install-sh
N xsrc/external/mit/xf86-video-suncg14/dist/config.h.in
N xsrc/external/mit/xf86-video-suncg14/dist/configure.ac
N xsrc/external/mit/xf86-video-suncg14/dist/ChangeLog
N xsrc/external/mit/xf86-video-suncg14/dist/configure
N xsrc/external/mit/xf86-video-suncg14/dist/aclocal.m4
N xsrc/external/mit/xf86-video-suncg14/dist/config.sub
N xsrc/external/mit/xf86-video-suncg14/dist/man/Makefile.in
N xsrc/external/mit/xf86-video-suncg14/dist/man/Makefile.am
N xsrc/external/mit/xf86-video-suncg14/dist/man/suncg14.man
N xsrc/external/mit/xf86-video-suncg14/dist/src/cg14_driver.c
N xsrc/external/mit/xf86-video-suncg14/dist/src/Makefile.in
N xsrc/external/mit/xf86-video-suncg14/dist/src/Makefile.am
N xsrc/external/mit/xf86-video-suncg14/dist/src/cg14.h

No conflicts created by this import



CVS commit: src/lib/libterminfo

2010-02-10 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Thu Feb 11 00:22:41 UTC 2010

Modified Files:
src/lib/libterminfo: terminfo.5.in

Log Message:
Correct date


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/lib/libterminfo/terminfo.5.in

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



CVS commit: src/lib/libterminfo

2010-02-10 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Thu Feb 11 00:27:09 UTC 2010

Modified Files:
src/lib/libterminfo: Makefile curterm.c setupterm.c term.c term.h
term_private.h

Log Message:
Embed ansi, dumb, vt100, vt220 and wsvt25 compiled terminal descriptions
into libterminfo.
Constify some foo.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/lib/libterminfo/Makefile \
src/lib/libterminfo/term.c src/lib/libterminfo/term_private.h
cvs rdiff -u -r1.1 -r1.2 src/lib/libterminfo/curterm.c \
src/lib/libterminfo/setupterm.c
cvs rdiff -u -r1.3 -r1.4 src/lib/libterminfo/term.h

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



Re: CVS commit: src/sys/dev/wscons (wsemul_vt100.c)

2010-02-10 Thread Geoff Wing
On Wednesday 2010-02-10 22:25 +, Nick Hudson output:
:Module Name:   src
:Committed By:  skrll
:Date:  Wed Feb 10 22:25:08 UTC 2010
:
:Modified Files:
:   src/sys/dev/wscons: wsemul_vt100.c
:
:Log Message:
:Remove accidental commit.
:cvs rdiff -u -r1.33 -r1.34 src/sys/dev/wscons/wsemul_vt100.c

We needed the accidental commit!  :-)
This reversal removed variables that were being used.

Regards,
Geoff

diff -u -r1.33 -r1.34
--- wsemul_vt100.c  10 Feb 2010 20:54:46 -  1.33
+++ wsemul_vt100.c  10 Feb 2010 22:25:08 -  1.34
[...]
@@ -1009,7 +1009,6 @@
 wsemul_vt100_getmsgattrs(void *cookie, struct wsdisplay_msgattrs *ma)
 {
struct wsemul_vt100_emuldata *edp = cookie;
-   struct vt100base_data *vd = edp-bd;
 
*ma = vd-msgattrs;
 }
@@ -1021,7 +1020,6 @@
int error;
long tmp;
struct wsemul_vt100_emuldata *edp = cookie;
-   struct vt100base_data *vd = edp-bd;
 
vd-msgattrs = *ma;
if (type-capabilities  WSSCREEN_WSCOLORS) {


CVS commit: src/distrib/sets/lists

2010-02-10 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu Feb 11 02:29:24 UTC 2010

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

Log Message:
add new rump components to setlists


To generate a diff of this commit:
cvs rdiff -u -r1.201 -r1.202 src/distrib/sets/lists/base/shl.elf
cvs rdiff -u -r1.520 -r1.521 src/distrib/sets/lists/base/shl.mi
cvs rdiff -u -r1.1387 -r1.1388 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.104 -r1.105 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/external/mit/xorg/server/drivers

2010-02-10 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Thu Feb 11 04:07:17 UTC 2010

Modified Files:
src/external/mit/xorg/server/drivers: Makefile

Log Message:
build the suncg14 driver on sparc


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/external/mit/xorg/server/drivers/Makefile

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

2010-02-10 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Thu Feb 11 05:19:35 UTC 2010

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

Log Message:
Directly memory-mappable block devices (typically NOR FlashROMs) can implement
DIOCGPHYSADDR and return its physical base address.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.15.2.1 src/sys/sys/dkio.h

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/ufs/ffs

2010-02-10 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Thu Feb 11 05:22:38 UTC 2010

Modified Files:
src/sys/ufs/ffs [uebayasi-xip]: ffs_vfsops.c

Log Message:
XIP hook for ffs.


To generate a diff of this commit:
cvs rdiff -u -r1.257 -r1.257.2.1 src/sys/ufs/ffs/ffs_vfsops.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-02-10 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Thu Feb 11 05:29:01 UTC 2010

Modified Files:
src/doc: BRANCHES

Log Message:
uebayasi-xip: Add some directories.


To generate a diff of this commit:
cvs rdiff -u -r1.286 -r1.287 src/doc/BRANCHES

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



CVS commit: [uebayasi-xip] src

2010-02-10 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Thu Feb 11 05:36:16 UTC 2010

Modified Files:
src/include [uebayasi-xip]: mntopts.h
src/sbin/mount [uebayasi-xip]: mount.8

Log Message:
Add the new xip mount option.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.13.4.1 src/include/mntopts.h
cvs rdiff -u -r1.69 -r1.69.2.1 src/sbin/mount/mount.8

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-02-10 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Thu Feb 11 06:26:48 UTC 2010

Modified Files:
src/sys/uvm [uebayasi-xip]: uvm_vnode.c

Log Message:
uvn_get: For XIP vnodes, skip read-ahead, because it's pointless.


To generate a diff of this commit:
cvs rdiff -u -r1.93 -r1.93.2.1 src/sys/uvm/uvm_vnode.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/tic

2010-02-10 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Thu Feb 11 07:00:46 UTC 2010

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

Log Message:
Sort options (standard order is 0-9AaBbCc...).


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/usr.bin/tic/tic.1

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