CVS commit: src/sys/dev/usb

2013-10-23 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Oct 23 08:38:12 UTC 2013

Modified Files:
src/sys/dev/usb: usbdevices.config

Log Message:
Add athn(4)


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/dev/usb/usbdevices.config

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

2013-10-23 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Wed Oct 23 09:28:06 UTC 2013

Modified Files:
src/sys/dev/pci: gffb.c

Log Message:
minor cleanup:
- don't map more PCI space than we have video memory
- clarify some comments


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/dev/pci/gffb.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/macppc/conf

2013-10-23 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Wed Oct 23 09:28:57 UTC 2013

Modified Files:
src/sys/arch/macppc/conf: GENERIC

Log Message:
add gffb, tweak comments


To generate a diff of this commit:
cvs rdiff -u -r1.311 -r1.312 src/sys/arch/macppc/conf/GENERIC

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



CVS commit: src/doc

2013-10-23 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Wed Oct 23 09:32:10 UTC 2013

Modified Files:
src/doc: CHANGES

Log Message:
mention gffb


To generate a diff of this commit:
cvs rdiff -u -r1.1855 -r1.1856 src/doc/CHANGES

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

2013-10-23 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Wed Oct 23 13:15:47 UTC 2013

Modified Files:
src/sys/dev/pci: gffb.c gffbreg.h

Log Message:
fix copyright year


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/pci/gffb.c
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/pci/gffbreg.h

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



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

2013-10-23 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Wed Oct 23 17:22:49 UTC 2013

Modified Files:
src/sys/arch/amd64/conf: GENERIC XEN3_DOM0

Log Message:
Add xhci device


To generate a diff of this commit:
cvs rdiff -u -r1.379 -r1.380 src/sys/arch/amd64/conf/GENERIC
cvs rdiff -u -r1.98 -r1.99 src/sys/arch/amd64/conf/XEN3_DOM0

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

2013-10-23 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Wed Oct 23 17:26:08 UTC 2013

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

Log Message:
Add xhci device


To generate a diff of this commit:
cvs rdiff -u -r1.1096 -r1.1097 src/sys/arch/i386/conf/GENERIC
cvs rdiff -u -r1.79 -r1.80 src/sys/arch/i386/conf/XEN3_DOM0

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



CVS commit: src

2013-10-23 Thread Marc Balmer
Module Name:src
Committed By:   mbalmer
Date:   Wed Oct 23 18:57:40 UTC 2013

Modified Files:
src/sbin/modstat: main.c
src/sys/modules/lua: lua.c
src/sys/modules/luacore: luacore.c
src/sys/sys: module.h

Log Message:
use MODULE_CLASS_MISC for Lua modules


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sbin/modstat/main.c
cvs rdiff -u -r1.2 -r1.3 src/sys/modules/lua/lua.c
cvs rdiff -u -r1.3 -r1.4 src/sys/modules/luacore/luacore.c
cvs rdiff -u -r1.33 -r1.34 src/sys/sys/module.h

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



CVS commit: src/sys

2013-10-23 Thread Matthias Drochner
Module Name:src
Committed By:   drochner
Date:   Wed Oct 23 20:18:51 UTC 2013

Modified Files:
src/sys/arch/amd64/amd64: fpu.c genassym.cf locore.S machdep.c
netbsd32_machdep.c process_machdep.c
src/sys/arch/amd64/include: fpu.h pcb.h proc.h types.h
src/sys/arch/i386/i386: compat_16_machdep.c genassym.cf locore.S
machdep.c process_machdep.c
src/sys/arch/i386/include: pcb.h proc.h types.h
src/sys/arch/i386/isa: npx.c
src/sys/arch/x86/acpi: acpi_wakeup.c
src/sys/arch/x86/include: cpu.h intrdefs.h
src/sys/arch/x86/x86: cpu.c ipi.c vm_machdep.c
src/sys/arch/xen/x86: cpu.c xen_ipi.c
src/sys/compat/linux/arch/amd64: linux_machdep.c
src/sys/compat/linux/arch/i386: linux_machdep.c
src/sys/compat/linux32/arch/amd64: linux32_machdep.c

Log Message:
Use the MI "pcu" framework for bookkeeping of npx/fpu states on x86.
This reduces the amount of MD code enormously, and makes it easier
to implement support for newer CPU features which require more fpu
state, or for fpu usage by the kernel.
For access to FPU state across CPUs, an xcall kthread is used now
rather than a dedicated IPI.
No user visible changes intended.


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/sys/arch/amd64/amd64/fpu.c
cvs rdiff -u -r1.52 -r1.53 src/sys/arch/amd64/amd64/genassym.cf
cvs rdiff -u -r1.73 -r1.74 src/sys/arch/amd64/amd64/locore.S
cvs rdiff -u -r1.196 -r1.197 src/sys/arch/amd64/amd64/machdep.c
cvs rdiff -u -r1.81 -r1.82 src/sys/arch/amd64/amd64/netbsd32_machdep.c
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/amd64/amd64/process_machdep.c
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/amd64/include/fpu.h
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/amd64/include/pcb.h
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/amd64/include/proc.h
cvs rdiff -u -r1.41 -r1.42 src/sys/arch/amd64/include/types.h
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/i386/i386/compat_16_machdep.c
cvs rdiff -u -r1.94 -r1.95 src/sys/arch/i386/i386/genassym.cf
cvs rdiff -u -r1.106 -r1.107 src/sys/arch/i386/i386/locore.S
cvs rdiff -u -r1.734 -r1.735 src/sys/arch/i386/i386/machdep.c
cvs rdiff -u -r1.72 -r1.73 src/sys/arch/i386/i386/process_machdep.c
cvs rdiff -u -r1.48 -r1.49 src/sys/arch/i386/include/pcb.h
cvs rdiff -u -r1.38 -r1.39 src/sys/arch/i386/include/proc.h
cvs rdiff -u -r1.74 -r1.75 src/sys/arch/i386/include/types.h
cvs rdiff -u -r1.143 -r1.144 src/sys/arch/i386/isa/npx.c
cvs rdiff -u -r1.32 -r1.33 src/sys/arch/x86/acpi/acpi_wakeup.c
cvs rdiff -u -r1.54 -r1.55 src/sys/arch/x86/include/cpu.h
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/x86/include/intrdefs.h
cvs rdiff -u -r1.102 -r1.103 src/sys/arch/x86/x86/cpu.c
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/x86/x86/ipi.c
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/x86/x86/vm_machdep.c
cvs rdiff -u -r1.93 -r1.94 src/sys/arch/xen/x86/cpu.c
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/xen/x86/xen_ipi.c
cvs rdiff -u -r1.40 -r1.41 src/sys/compat/linux/arch/amd64/linux_machdep.c
cvs rdiff -u -r1.151 -r1.152 src/sys/compat/linux/arch/i386/linux_machdep.c
cvs rdiff -u -r1.31 -r1.32 \
src/sys/compat/linux32/arch/amd64/linux32_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/arch/arm/arm

2013-10-23 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed Oct 23 20:28:11 UTC 2013

Modified Files:
src/sys/arch/arm/arm: cpufunc.c

Log Message:
Fix PR/48332 by reverting to passing 0x as the cpuctrlmask.
Comment out the cpuctrlmask that doesn't work for the imx23_olinuxino
leaving it there for reference.


To generate a diff of this commit:
cvs rdiff -u -r1.126 -r1.127 src/sys/arch/arm/arm/cpufunc.c

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



CVS commit: src/sbin/gpt

2013-10-23 Thread John Nemeth
Module Name:src
Committed By:   jnemeth
Date:   Thu Oct 24 06:59:03 UTC 2013

Modified Files:
src/sbin/gpt: gpt.8

Log Message:
- markup
- typo; the label command labels partitions, not remove them
- migrate -s isn't applicable to NetBSD
- add information about the space required for migration
- add a "gpt show -l" example


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sbin/gpt/gpt.8

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