CVS commit: src/sys/dev/pci/ixgbe

2015-03-10 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue Mar 10 08:54:17 UTC 2015

Modified Files:
src/sys/dev/pci/ixgbe: ixgbe.h

Log Message:
 Add missing parenthesis in IXGBE_CORE_LOCK_ASSERT() macro. No binary change.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/pci/ixgbe/ixgbe.h

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



CVS commit: src/sys

2015-03-10 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue Mar 10 09:26:50 UTC 2015

Modified Files:
src/sys/arch/amd64/conf: GENERIC
src/sys/dev/pci: files.pci
src/sys/dev/pci/ixgbe: ixgbe_vf.h ixv.c ixv.h

Log Message:
 Modify to make Intel Intel 10G Ethernet (ixg(4)) virtual function ixv(4)
compilable. Not completed yet. It's required to use MSI-X.


To generate a diff of this commit:
cvs rdiff -u -r1.410 -r1.411 src/sys/arch/amd64/conf/GENERIC
cvs rdiff -u -r1.373 -r1.374 src/sys/dev/pci/files.pci
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/pci/ixgbe/ixgbe_vf.h
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/pci/ixgbe/ixv.c \
src/sys/dev/pci/ixgbe/ixv.h

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/dev/systrace

2015-03-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Mar 10 12:17:50 UTC 2015

Modified Files:
src/external/cddl/osnet/dev/systrace: systrace.c

Log Message:
fix reversed test.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/cddl/osnet/dev/systrace/systrace.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/stdlib

2015-03-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Mar 10 12:57:56 UTC 2015

Modified Files:
src/lib/libc/stdlib: strtonum.c

Log Message:
The OpenBSD strtonum() only accepts base 10 keywords. (Kamil Rytarowski)


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/lib/libc/stdlib/strtonum.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

2015-03-10 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Tue Mar 10 12:59:32 UTC 2015

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

Log Message:
ffs_superblock_validate(): check the number of inodes per block. Otherwise
a malformed value could panic the system.


To generate a diff of this commit:
cvs rdiff -u -r1.321 -r1.322 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/lib/libc/stdlib

2015-03-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Mar 10 13:00:58 UTC 2015

Modified Files:
src/lib/libc/stdlib: strtol.3 strtoul.3

Log Message:
PR/49640: Kamil Rytarowski: Improve error printing


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/lib/libc/stdlib/strtol.3
cvs rdiff -u -r1.28 -r1.29 src/lib/libc/stdlib/strtoul.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/stdlib

2015-03-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Mar 10 13:05:13 UTC 2015

Modified Files:
src/lib/libc/stdlib: reallocarray.c

Log Message:
Behave in an OpenBSD compatible way for 0.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/lib/libc/stdlib/reallocarray.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/openssl/lib/libcrypto/arch/arm

2015-03-10 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Mar 10 13:28:47 UTC 2015

Added Files:
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm: aes-armv4.S
aes.inc aesv8-armx.S arm_asm.h armv4-gf2m.S armv4-mont.S
armv4cpuid.S bsaes-armv7.S crypto.inc ghash-armv4.S ghashv8-armx.S
modes.inc sha.inc sha1-armv4-large.S sha256-armv4.S sha512-armv4.S
Removed Files:
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm: des.inc

Log Message:
Update the ARM asm support code from version 1.0.2 with some local
modifications to make it compile and work on armv4.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/aes-armv4.S \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/aes.inc \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/aesv8-armx.S \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/arm_asm.h \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/armv4-gf2m.S \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/armv4-mont.S \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/armv4cpuid.S \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/bsaes-armv7.S \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/ghash-armv4.S \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/ghashv8-armx.S \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/modes.inc \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/sha.inc \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/sha1-armv4-large.S \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/sha256-armv4.S \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/sha512-armv4.S
cvs rdiff -u -r0 -r1.3 \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/crypto.inc
cvs rdiff -u -r1.1 -r0 \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/des.inc

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/openssl/dist/crypto

2015-03-10 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Mar 10 13:28:08 UTC 2015

Modified Files:
src/crypto/external/bsd/openssl/dist/crypto: arm_arch.h armcap.c

Log Message:
Update arm runtime detection from version 1.0.2, so we can use the newer
asm support code.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/crypto/external/bsd/openssl/dist/crypto/arm_arch.h
cvs rdiff -u -r1.1.1.2 -r1.2 \
src/crypto/external/bsd/openssl/dist/crypto/armcap.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/ic

2015-03-10 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Tue Mar 10 18:01:04 UTC 2015

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

Log Message:
support 8bit mode, needed for ci20


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/dev/ic/dm9000.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/mips/ingenic

2015-03-10 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Tue Mar 10 18:02:16 UTC 2015

Modified Files:
src/sys/arch/mips/ingenic: ingenic_regs.h

Log Message:
add gpio registers


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/mips/ingenic/ingenic_regs.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/mips/ingenic

2015-03-10 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Tue Mar 10 18:03:18 UTC 2015

Modified Files:
src/sys/arch/mips/ingenic: ingenic_dwctwo.c

Log Message:
flash the LED to show we're doing something
( and as a side effect make sure the USB PHY is powered up )


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/mips/ingenic/ingenic_dwctwo.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/mips/ingenic

2015-03-10 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Tue Mar 10 18:15:47 UTC 2015

Added Files:
src/sys/arch/mips/ingenic: ingenic_dme.c

Log Message:
support CI20's onboard Ethernet controller


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/sys/arch/mips/ingenic/ingenic_dme.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/evbmips/ingenic

2015-03-10 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Tue Mar 10 22:39:38 UTC 2015

Modified Files:
src/sys/arch/evbmips/ingenic: machdep.c

Log Message:
enable the full 1GB of RAM
TODO: actually probe for it


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/evbmips/ingenic/machdep.c

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



CVS commit: [netbsd-7] xsrc/external/mit/xsm/dist

2015-03-10 Thread Soren Jacobsen
Module Name:xsrc
Committed By:   snj
Date:   Wed Mar 11 06:24:39 UTC 2015

Modified Files:
xsrc/external/mit/xsm/dist [netbsd-7]: auth.c choose.c lock.c remote.c
restart.c saveutil.c

Log Message:
Pull up following revision(s) (requested by mrg in ticket #583):
external/mit/xsm/dist/choose.c: revision 1.2, 1.3
external/mit/xsm/dist/saveutil.c: revision 1.2, 1.3
external/mit/xsm/dist/auth.c: revision 1.2, 1.3
external/mit/xsm/dist/lock.c: revision 1.2, 1.3
external/mit/xsm/dist/remote.c: revision 1.2, 1.3
external/mit/xsm/dist/restart.c: revision 1.2, 1.3
set close-on-exec for all fds opened...
--
Switch to the version of the close-on-exec patch that was committed upstream.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.3 -r1.1.1.3.4.1 xsrc/external/mit/xsm/dist/auth.c \
xsrc/external/mit/xsm/dist/choose.c xsrc/external/mit/xsm/dist/lock.c \
xsrc/external/mit/xsm/dist/remote.c xsrc/external/mit/xsm/dist/restart.c \
xsrc/external/mit/xsm/dist/saveutil.c

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



CVS commit: [netbsd-7] xsrc/external/mit/libdrm/dist/include/drm

2015-03-10 Thread Soren Jacobsen
Module Name:xsrc
Committed By:   snj
Date:   Wed Mar 11 06:26:44 UTC 2015

Modified Files:
xsrc/external/mit/libdrm/dist/include/drm [netbsd-7]: i915_drm.h

Log Message:
Pull up following revision(s) (requested by mrg in ticket #584):
external/mit/libdrm/dist/include/drm/i915_drm.h: revision 1.2
fix cut-n-paste error


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.5.2.1 -r1.1.1.5.2.2 \
xsrc/external/mit/libdrm/dist/include/drm/i915_drm.h

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