CVS commit: src/sys/dev/usb

2015-04-11 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Apr 11 10:10:14 UTC 2015

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

Log Message:
Use NULL not 0 for pointers.

Add a '\n' to a DPRINTF (old style)


To generate a diff of this commit:
cvs rdiff -u -r1.200 -r1.201 src/sys/dev/usb/usb_subr.c

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



CVS commit: src/lib/librumphijack

2015-04-11 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sat Apr 11 12:54:41 UTC 2015

Modified Files:
src/lib/librumphijack: hijack.c

Log Message:
Define the expansion of the VFORK macro, not the symbol `VFORK'.

Fixes hijacking processes that vfork and exec.  Symptom was the child
would spin with read/EAGAIN <-> kevent/EBADF because the inheritance
mechanism relied on setting the holyfd to -1 on fork...which didn't
happen if we didn't hijack vfork.

ok pooka@


To generate a diff of this commit:
cvs rdiff -u -r1.116 -r1.117 src/lib/librumphijack/hijack.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/arm32

2015-04-11 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sat Apr 11 13:37:59 UTC 2015

Modified Files:
src/sys/arch/arm/arm32: arm32_machdep.c

Log Message:
Handle boot option -x (alias 'debug') and set AB_DEBUG in boothowto.


To generate a diff of this commit:
cvs rdiff -u -r1.108 -r1.109 src/sys/arch/arm/arm32/arm32_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/omap

2015-04-11 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sat Apr 11 13:44:14 UTC 2015

Modified Files:
src/sys/arch/arm/omap: tifb.c

Log Message:
Don't make the frame buffer BUS_DMA_COHERENT, but instead
do a bus_dmamap_sync() on end-of-frame interrupts.
This effectively cause the frame buffer to be mapped cached,
giving a very noticeable performance boost.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/omap/tifb.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/arm32

2015-04-11 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Apr 11 15:21:33 UTC 2015

Modified Files:
src/sys/arch/arm/arm32: pmap.c

Log Message:
#include "opt_arm_debug.h" for VERBOSE_INIT_ARM


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

2015-04-11 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Apr 11 15:24:26 UTC 2015

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

Log Message:
Trailing whitespace


To generate a diff of this commit:
cvs rdiff -u -r1.156 -r1.157 src/sys/kern/kern_lock.c

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



CVS commit: src/sys/kern

2015-04-11 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Apr 11 15:23:56 UTC 2015

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

Log Message:
Allow sleeping in the idle lwp if the cpu isn't running yet.

OK'ed by rmind a while ago.


To generate a diff of this commit:
cvs rdiff -u -r1.155 -r1.156 src/sys/kern/kern_lock.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/rpi

2015-04-11 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Apr 11 15:29:58 UTC 2015

Modified Files:
src/sys/arch/evbarm/rpi: rpi_machdep.c

Log Message:
Tweak cpu start up slightly and print TTBR for cortex_mmuinfo when
VERBOSE_INIT_ARM


To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 src/sys/arch/evbarm/rpi/rpi_machdep.c

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



CVS commit: src/bin/pax

2015-04-11 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Apr 11 15:41:33 UTC 2015

Modified Files:
src/bin/pax: options.c tar.1

Log Message:
Add -J/--xz to specifically decompress xz compressed files. We don't really
need this because -z autodetects the compression format; this is for syntax
compatibility with other tar implementations. From Joachim Henke


To generate a diff of this commit:
cvs rdiff -u -r1.115 -r1.116 src/bin/pax/options.c
cvs rdiff -u -r1.33 -r1.34 src/bin/pax/tar.1

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



CVS commit: src/bin/pax

2015-04-11 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Sat Apr 11 16:22:07 UTC 2015

Modified Files:
src/bin/pax: tar.1

Log Message:
Use An in AUTHORS section.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/bin/pax/tar.1

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



CVS commit: src/external/cddl/osnet/sys/kern

2015-04-11 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sat Apr 11 16:32:07 UTC 2015

Modified Files:
src/external/cddl/osnet/sys/kern: taskq.c

Log Message:
Fix ASSERT(x == y | z).  Interpret nthreads as pct when requested.

Reduces the number of threads created by zfs to a slightly less
insane value.

XXX This whole taskq business is questionable, and we really really
should not have copies of external code outside dist/ and without
vendor branches to record provenance and local changes.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/cddl/osnet/sys/kern/taskq.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

2015-04-11 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sat Apr 11 16:47:47 UTC 2015

Modified Files:
src/sys/arch/arm/cortex: gic.c
src/sys/arch/arm/pic: picvar.h

Log Message:
Add a pic_cpus to the softc which specifies which cpus the pic can send
IPIs to.  For GIC, initialize pic_cpus to kcpuset_running since it can handle
all the cpus.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/arm/cortex/gic.c
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/arm/pic/picvar.h

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



CVS commit: src/sys/uvm

2015-04-11 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Sat Apr 11 19:24:13 UTC 2015

Modified Files:
src/sys/uvm: files.uvm uvm_page.c

Log Message:
Allow changing the per-cpu emergency page reservation via kernel config.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/uvm/files.uvm
cvs rdiff -u -r1.186 -r1.187 src/sys/uvm/uvm_page.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/pic

2015-04-11 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sat Apr 11 19:39:09 UTC 2015

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

Log Message:
Adapt pic to deal with the BCM2836 interrupts.
Move pic_pending_pics, pic_pending_ipls, and pic_blocked_irqs into a
structure and make then per-cpu.  There is no global interrupt state anymore.


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/sys/arch/arm/pic/pic.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/i2c

2015-04-11 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Sat Apr 11 20:05:44 UTC 2015

Modified Files:
src/sys/dev/i2c: pcf8563.c

Log Message:
Always use polling mode for now, hummingbird doesn't work otherwise.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/i2c/pcf8563.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/wpa/dist/src/eap_server

2015-04-11 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Sat Apr 11 21:14:13 UTC 2015

Modified Files:
src/external/bsd/wpa/dist/src/eap_server: eap_server.c

Log Message:
Cast enum.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.5 -r1.2 \
src/external/bsd/wpa/dist/src/eap_server/eap_server.c

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

2015-04-11 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Sat Apr 11 21:14:31 UTC 2015

Modified Files:
src/crypto/external/bsd/openssh/dist: packet.h ssh-keygen.c

Log Message:
Use __dead.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/crypto/external/bsd/openssh/dist/packet.h
cvs rdiff -u -r1.15 -r1.16 src/crypto/external/bsd/openssh/dist/ssh-keygen.c

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