CVS commit: src/sys/dev/acpi

2010-10-27 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Thu Oct 28 04:28:29 UTC 2010

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

Log Message:
Fix a comment typo.


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

2010-10-27 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Thu Oct 28 04:27:40 UTC 2010

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

Log Message:
Only override data from XPSS if the conventional _PSS did not contain the
required information. Problem found and diagnosed by jakllsch@; on some AMD
systems vendors fill _PSS correctly, but do not duplicate the data in XPSS.


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/sys/dev/acpi/acpi_cpu_pstate.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/evbarm/conf

2010-10-27 Thread Allen Briggs
Module Name:src
Committed By:   briggs
Date:   Thu Oct 28 03:30:22 UTC 2010

Modified Files:
src/sys/arch/evbarm/conf: TWINTAIL

Log Message:
Bump SYMTAB_SPACE.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/sys/arch/evbarm/conf/TWINTAIL

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



CVS commit: [uebayasi-xip] src/share/man/man4

2010-10-27 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Thu Oct 28 03:27:55 UTC 2010

Modified Files:
src/share/man/man4 [uebayasi-xip]: xmd.4

Log Message:
Note that underlying char array must be physically contiguous.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/share/man/man4/xmd.4

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



CVS commit: src/sys/arch/evbarm/conf

2010-10-27 Thread Allen Briggs
Module Name:src
Committed By:   briggs
Date:   Thu Oct 28 02:10:27 UTC 2010

Modified Files:
src/sys/arch/evbarm/conf: ADI_BRH CP3100 IQ80310 IQ80321 TEAMASA_NPWR
TEAMASA_NPWR_FC

Log Message:
Bump SYMTAB_SPACE for a few configurations.


To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/sys/arch/evbarm/conf/ADI_BRH
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/evbarm/conf/CP3100
cvs rdiff -u -r1.67 -r1.68 src/sys/arch/evbarm/conf/IQ80310
cvs rdiff -u -r1.62 -r1.63 src/sys/arch/evbarm/conf/IQ80321
cvs rdiff -u -r1.63 -r1.64 src/sys/arch/evbarm/conf/TEAMASA_NPWR
cvs rdiff -u -r1.28 -r1.29 src/sys/arch/evbarm/conf/TEAMASA_NPWR_FC

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



CVS commit: src/etc/powerd/scripts

2010-10-27 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Thu Oct 28 02:06:03 UTC 2010

Modified Files:
src/etc/powerd/scripts: lid_switch

Log Message:
adapt to how backlight control is supposed to work - just flip the switch and
we don't need to save the brightness level


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/etc/powerd/scripts/lid_switch

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/test/sysproxy

2010-10-27 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Wed Oct 27 20:46:55 UTC 2010

Removed Files:
src/sys/rump/librump/test/sysproxy/client: Makefile sysproxy_client.c
src/sys/rump/librump/test/sysproxy/serv: Makefile sysproxy_serv.c

Log Message:
remove obsolete tests


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r0 src/sys/rump/librump/test/sysproxy/client/Makefile \
src/sys/rump/librump/test/sysproxy/client/sysproxy_client.c
cvs rdiff -u -r1.1 -r0 src/sys/rump/librump/test/sysproxy/serv/Makefile \
src/sys/rump/librump/test/sysproxy/serv/sysproxy_serv.c

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



CVS commit: src

2010-10-27 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Wed Oct 27 20:44:50 UTC 2010

Modified Files:
src/lib/librumpuser: Makefile
src/sys/rump/include/rump: rump.h rumpuser.h
src/sys/rump/librump/rumpkern: rump.c rump_private.h rumpcopy.c vm.c
Added Files:
src/lib/librumpuser: rumpuser_sp.c

Log Message:
Start rework of system call proxying over socket ("sysproxy").
This incarnation is written in the user namespace as opposed to
the previous one which was done in kernel namespace.  Also, rump
does all the handshaking now instead of excepting an application
to come up with the user namespace socket.

There's still a lot to do, including making code "a bit" more
robust, actually running different clients in a different process
inside the kernel and splitting the client side library from librump.
I'm committing this now so that I don't lose it, plus it generally
works as long as you don't use it in unexcepted ways: i've tested
ifconfig(8), route(8), envstat(8) and sysctl(8).


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/lib/librumpuser/Makefile
cvs rdiff -u -r0 -r1.1 src/lib/librumpuser/rumpuser_sp.c
cvs rdiff -u -r1.45 -r1.46 src/sys/rump/include/rump/rump.h \
src/sys/rump/include/rump/rumpuser.h
cvs rdiff -u -r1.190 -r1.191 src/sys/rump/librump/rumpkern/rump.c
cvs rdiff -u -r1.58 -r1.59 src/sys/rump/librump/rumpkern/rump_private.h
cvs rdiff -u -r1.5 -r1.6 src/sys/rump/librump/rumpkern/rumpcopy.c
cvs rdiff -u -r1.97 -r1.98 src/sys/rump/librump/rumpkern/vm.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/librump/rumpkern

2010-10-27 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Wed Oct 27 20:37:11 UTC 2010

Modified Files:
src/sys/rump/librump/rumpkern: Makefile.rumpkern

Log Message:
"i build dead files".  ok, so let's not.


To generate a diff of this commit:
cvs rdiff -u -r1.97 -r1.98 src/sys/rump/librump/rumpkern/Makefile.rumpkern

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-10-27 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Wed Oct 27 20:35:48 UTC 2010

Modified Files:
src/sys/rump/include/rump: rumpkern_if_pub.h
src/sys/rump/librump/rumpkern: rumpkern_if_priv.h
rumpkern_if_wrappers.c

Log Message:
regen:
- rump_sysproxy
+ rump_syscall


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/rump/include/rump/rumpkern_if_pub.h
cvs rdiff -u -r1.8 -r1.9 src/sys/rump/librump/rumpkern/rumpkern_if_priv.h \
src/sys/rump/librump/rumpkern/rumpkern_if_wrappers.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/librump/rumpkern

2010-10-27 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Wed Oct 27 20:34:50 UTC 2010

Modified Files:
src/sys/rump/librump/rumpkern: rumpkern.ifspec
Removed Files:
src/sys/rump/librump/rumpkern: sysproxy_socket.c

Log Message:
Retire the old sysproxy nonsense (as part of doing it slightly better).

Introduce rump_pub_syscall() as the generic interface for making
system calls with already marshalled arguments.  So it's kinda like
syscall(2), except it also remembered to breathe instead of having
to figure out how to deal with 64bit values.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/rump/librump/rumpkern/rumpkern.ifspec
cvs rdiff -u -r1.9 -r0 src/sys/rump/librump/rumpkern/sysproxy_socket.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-10-27 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Wed Oct 27 19:18:00 UTC 2010

Modified Files:
src/lib/libc/time: ctime.3

Log Message:
Fix a typo and remove trailing whitespace.


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/lib/libc/time/ctime.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/time

2010-10-27 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 27 19:16:04 UTC 2010

Modified Files:
src/lib/libc/time: ctime.3

Log Message:
markup improvements, document ctype_r, time_t is not a "long integer"


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/lib/libc/time/ctime.3

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



CVS commit: src/usr.sbin/makefs

2010-10-27 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Oct 27 18:51:35 UTC 2010

Modified Files:
src/usr.sbin/makefs: cd9660.c cd9660.h
src/usr.sbin/makefs/cd9660: cd9660_debug.c cd9660_eltorito.c

Log Message:
Handle > 2GB images. Thanks to Greg Troxel for testing!


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/usr.sbin/makefs/cd9660.c
cvs rdiff -u -r1.14 -r1.15 src/usr.sbin/makefs/cd9660.h
cvs rdiff -u -r1.10 -r1.11 src/usr.sbin/makefs/cd9660/cd9660_debug.c
cvs rdiff -u -r1.13 -r1.14 src/usr.sbin/makefs/cd9660/cd9660_eltorito.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/stand/misc

2010-10-27 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Oct 27 18:29:46 UTC 2010

Modified Files:
src/sys/arch/i386/stand/misc: Makefile
Added Files:
src/sys/arch/i386/stand/misc: rawr32.exe.uue
Removed Files:
src/sys/arch/i386/stand/misc: rawr32.zip.uue rawr32src.zip.uue

Log Message:
Update Rawrite32 to the latest version


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/i386/stand/misc/Makefile
cvs rdiff -u -r0 -r1.1 src/sys/arch/i386/stand/misc/rawr32.exe.uue
cvs rdiff -u -r1.1 -r0 src/sys/arch/i386/stand/misc/rawr32.zip.uue \
src/sys/arch/i386/stand/misc/rawr32src.zip.uue

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



CVS commit: src/distrib/notes/common

2010-10-27 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Oct 27 18:17:42 UTC 2010

Modified Files:
src/distrib/notes/common: main

Log Message:
Adapt to newer Rawrite32 version


To generate a diff of this commit:
cvs rdiff -u -r1.466 -r1.467 src/distrib/notes/common/main

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



CVS commit: src/distrib/notes/macppc

2010-10-27 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Oct 27 14:41:47 UTC 2010

Modified Files:
src/distrib/notes/macppc: prep.OPENFIRMWARE

Log Message:
Update rawrite32 url


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/distrib/notes/macppc/prep.OPENFIRMWARE

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



CVS commit: src

2010-10-27 Thread Grégoire Sutre
Module Name:src
Committed By:   gsutre
Date:   Wed Oct 27 14:39:27 UTC 2010

Modified Files:
src/share/man/man4: acpi.4
src/sys/dev/acpi: acpi_debug.c

Log Message:
Make acpi(4) debug aware of ACPI_DISPLAY_COMPONENT.


To generate a diff of this commit:
cvs rdiff -u -r1.60 -r1.61 src/share/man/man4/acpi.4
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/acpi/acpi_debug.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

2010-10-27 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Wed Oct 27 14:13:57 UTC 2010

Modified Files:
src/sys/arch/amd64/conf [uebayasi-xip]: majors.amd64
src/sys/arch/evbppc/conf [uebayasi-xip]: majors.evbppc
src/sys/arch/hpcmips/conf [uebayasi-xip]: majors.hpcmips
src/sys/arch/i386/conf [uebayasi-xip]: majors.i386
src/sys/conf [uebayasi-xip]: majors

Log Message:
Move flash(4)/xmd(4) majors to MI, as suggested by Chuck Silvers.


To generate a diff of this commit:
cvs rdiff -u -r1.21.6.1 -r1.21.6.2 src/sys/arch/amd64/conf/majors.amd64
cvs rdiff -u -r1.28.6.2 -r1.28.6.3 src/sys/arch/evbppc/conf/majors.evbppc
cvs rdiff -u -r1.27 -r1.27.6.1 src/sys/arch/hpcmips/conf/majors.hpcmips
cvs rdiff -u -r1.37.6.2 -r1.37.6.3 src/sys/arch/i386/conf/majors.i386
cvs rdiff -u -r1.47.2.3 -r1.47.2.4 src/sys/conf/majors

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



CVS commit: src/sys

2010-10-27 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Wed Oct 27 14:08:09 UTC 2010

Modified Files:
src/sys/arch/hpcmips/conf: majors.hpcmips
src/sys/conf: majors

Log Message:
Reserve an MI major for coming flash(4).

hpcmips defines one in MD majors, but it's not listed in
etc/etc.hpcmips/MAKEDEV.conf, so I assume actual files are never
created in users' filesystems.

Prompted By:pooka


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/arch/hpcmips/conf/majors.hpcmips
cvs rdiff -u -r1.52 -r1.53 src/sys/conf/majors

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



CVS commit: src/sys/arch/bebox/bebox

2010-10-27 Thread KIYOHARA Takashi
Module Name:src
Committed By:   kiyohara
Date:   Wed Oct 27 10:42:13 UTC 2010

Modified Files:
src/sys/arch/bebox/bebox: autoconf.c

Log Message:
Get and parse root-device.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/bebox/bebox/autoconf.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/bebox/stand/boot

2010-10-27 Thread KIYOHARA Takashi
Module Name:src
Committed By:   kiyohara
Date:   Wed Oct 27 10:37:38 UTC 2010

Modified Files:
src/sys/arch/bebox/stand/boot: boot.c

Log Message:
Set root-device to bootinfo.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/bebox/stand/boot/boot.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/bebox/include

2010-10-27 Thread KIYOHARA Takashi
Module Name:src
Committed By:   kiyohara
Date:   Wed Oct 27 10:33:23 UTC 2010

Modified Files:
src/sys/arch/bebox/include: bootinfo.h

Log Message:
Add macro BTINFO_ROOTDEVICE and struct btinfo_rootdevice.
And indent.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/bebox/include/bootinfo.h

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