CVS commit: src/lib/libm/arch/vax

2014-10-10 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Oct 11 06:34:31 UTC 2014

Modified Files:
src/lib/libm/arch/vax: n_sqrt.S

Log Message:
Fix _sqrtl alias


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/lib/libm/arch/vax/n_sqrt.S

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



CVS commit: src/lib/libm/arch/vax

2014-10-10 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Oct 11 06:59:29 UTC 2014

Modified Files:
src/lib/libm/arch/vax: n_sqrt.S

Log Message:
Seems we need both sqrtl and _sqrtl as a weak alias - something must be
wrong namespapce wise here, but this should make it build for now.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/lib/libm/arch/vax/n_sqrt.S

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



CVS commit: src/lib/libm/noieee_src

2014-10-11 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Oct 11 07:19:27 UTC 2014

Modified Files:
src/lib/libm/noieee_src: n_pow.c

Log Message:
Need powl as alias as well


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/lib/libm/noieee_src/n_pow.c

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



CVS commit: src/tests/lib/libc/sync

2014-10-11 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Oct 11 14:52:16 UTC 2014

Modified Files:
src/tests/lib/libc/sync: Makefile
Added Files:
src/tests/lib/libc/sync: cpp_atomic_ops_linkable.cc

Log Message:
Add a link time test to catch missing symbols in libc, as pointed
out in PR toolchain/49074.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/sync/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sync/cpp_atomic_ops_linkable.cc

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



CVS commit: src/usr.bin/config

2014-10-11 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Oct 11 17:27:42 UTC 2014

Modified Files:
src/usr.bin/config: sem.c

Log Message:
Remove a set but not used variable


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 src/usr.bin/config/sem.c

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



CVS commit: src/tests/lib/libc/sync

2014-10-11 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Oct 11 17:46:58 UTC 2014

Modified Files:
src/tests/lib/libc/sync: cpp_atomic_ops_linkable.cc

Log Message:
If not __HAVE_ATOMIC64_OPS, do not force the test for 64bit types.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/sync/cpp_atomic_ops_linkable.cc

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



CVS commit: src/tests/lib/libc/sync

2014-10-12 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 12 08:02:35 UTC 2014

Modified Files:
src/tests/lib/libc/sync: Makefile

Log Message:
Disable the  C++11 test for now, we are not ready for it.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/sync/Makefile

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



CVS commit: src/tests/lib/libc/sync

2014-10-12 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 12 12:26:41 UTC 2014

Modified Files:
src/tests/lib/libc/sync: cpp_atomic_ops_linkable.cc

Log Message:
If we don't have 64 bit atomic ops, also do not test "long long" and intmax_t
(and friends).


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/sync/cpp_atomic_ops_linkable.cc

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



CVS commit: src/common/lib/libc/atomic

2014-10-12 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 12 17:51:47 UTC 2014

Added Files:
src/common/lib/libc/atomic: atomic_c11_compare_exchange_cas_16.c
atomic_c11_compare_exchange_cas_32.c
atomic_c11_compare_exchange_cas_8.c

Log Message:
Provide __atomic_compare_exchange_N (as needed for the C11 2011 
ops) via the corresponding CAS.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 \
src/common/lib/libc/atomic/atomic_c11_compare_exchange_cas_16.c \
src/common/lib/libc/atomic/atomic_c11_compare_exchange_cas_32.c \
src/common/lib/libc/atomic/atomic_c11_compare_exchange_cas_8.c

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



CVS commit: src/common/lib/libc/arch/vax/atomic

2014-10-12 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 12 17:53:33 UTC 2014

Modified Files:
src/common/lib/libc/arch/vax/atomic: Makefile.inc

Log Message:
Hook __atomic_compare_exchange_N into vax libc.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/common/lib/libc/arch/vax/atomic/Makefile.inc

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



CVS commit: src/tests/net/mcast

2014-10-12 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 06:57:08 UTC 2014

Modified Files:
src/tests/net/mcast: t_mcast.c

Log Message:
timespec.tv_nsec is long, so use %ld instead of %jd as printf format.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/tests/net/mcast/t_mcast.c

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



CVS commit: src/common/lib/libc

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 07:31:12 UTC 2014

Modified Files:
src/common/lib/libc/arch/arm/atomic: Makefile.inc
src/common/lib/libc/atomic: atomic_op_namespace.h
Added Files:
src/common/lib/libc/atomic: atomic_and_16_nv_cas.c
atomic_and_8_nv_cas.c

Log Message:
Provide __sync_and_and_fetch_2 and __sync_and_and_fetch_1 for pre-ARMv6,
they are needed for the C++ 2011  stuff.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/common/lib/libc/arch/arm/atomic/Makefile.inc
cvs rdiff -u -r0 -r1.2 src/common/lib/libc/atomic/atomic_and_16_nv_cas.c \
src/common/lib/libc/atomic/atomic_and_8_nv_cas.c
cvs rdiff -u -r1.6 -r1.7 src/common/lib/libc/atomic/atomic_op_namespace.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

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 08:18:52 UTC 2014

Modified Files:
src/sys/dev/ic: dwc_gmac_reg.h

Log Message:
Add MAC config register bit definitions


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

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 08:24:53 UTC 2014

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

Log Message:
When link status changes, update MAC configuration accordingly.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/ic/dwc_gmac.c

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



CVS commit: src/common/lib/libc/arch/sparc/atomic

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 08:59:41 UTC 2014

Modified Files:
src/common/lib/libc/arch/sparc/atomic: Makefile.inc

Log Message:
Add C++ 2011  support functions.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/common/lib/libc/arch/sparc/atomic/Makefile.inc

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

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 09:07:26 UTC 2014

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

Log Message:
Do not flush/restart the TX engine after queuing packets, but instead
keep it running (it will stall when out of descriptors), and inform it
about new descriptors available by writing to the TXPOLL request register.
Add more debugging code.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/dev/ic/dwc_gmac.c

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



CVS commit: src/tests/lib/libc/sync

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 09:57:35 UTC 2014

Modified Files:
src/tests/lib/libc/sync: Makefile

Log Message:
Do not try the C++ 2011 test with gcc < 4.8


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/tests/lib/libc/sync/Makefile

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

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 10:29:27 UTC 2014

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

Log Message:
Initialize a variable that gcc thinks might be used uninitialized.


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/dev/i2c/ds1307.c

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



CVS commit: src/tests/lib/libc/sync

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 11:07:38 UTC 2014

Modified Files:
src/tests/lib/libc/sync: Makefile

Log Message:
Fix include order, so the makefile actually does something again.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/tests/lib/libc/sync/Makefile

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



CVS commit: src/common/lib/libc/arch/arm/atomic

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 12:49:59 UTC 2014

Modified Files:
src/common/lib/libc/arch/arm/atomic: Makefile.inc

Log Message:
Move the and_{16,8}_nv sources into the right (libc only) block.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/common/lib/libc/arch/arm/atomic/Makefile.inc

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



CVS commit: src/common/lib/libc/arch

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 13:00:55 UTC 2014

Modified Files:
src/common/lib/libc/arch/mips/atomic: Makefile.inc
src/common/lib/libc/arch/sh3/atomic: Makefile.inc

Log Message:
Provide  C++ 2011 support functions for mips and sh3.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/common/lib/libc/arch/mips/atomic/Makefile.inc
cvs rdiff -u -r1.6 -r1.7 src/common/lib/libc/arch/sh3/atomic/Makefile.inc

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



CVS commit: [netbsd-7] src/sys/fs/puffs

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 18:57:46 UTC 2014

Modified Files:
src/sys/fs/puffs [netbsd-7]: puffs_vnops.c

Log Message:
Pull up following revision(s) (requested by manu in ticket #136):
sys/fs/puffs/puffs_vnops.c: revision 1.189-1.191
If we truncate a file open for writing, make sure we zero-fill the end
of the last page, otherwise if the file is later truncated to a larger
size (creating a hole), that area will not return zeroes as it should.


To generate a diff of this commit:
cvs rdiff -u -r1.182.2.5 -r1.182.2.6 src/sys/fs/puffs/puffs_vnops.c

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



CVS commit: [netbsd-7] src/lib/libperfuse

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 19:00:16 UTC 2014

Modified Files:
src/lib/libperfuse [netbsd-7]: ops.c

Log Message:
Pull up following revision(s) (requested by manu in ticket #137):
lib/libperfuse/ops.c: revision 1.76
Report allocated bytes on FS correctly, instead of using file size
(which is wrong for sparse files)


To generate a diff of this commit:
cvs rdiff -u -r1.66.2.7 -r1.66.2.8 src/lib/libperfuse/ops.c

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



CVS commit: [netbsd-7] src/lib/libm

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 19:34:58 UTC 2014

Modified Files:
src/lib/libm [netbsd-7]: Makefile shlib_version
src/lib/libm/arch/vax [netbsd-7]: n_atan2.S n_cabs.S n_sincos.S
n_sqrt.S
src/lib/libm/complex [netbsd-7]: Makefile.inc cprojl.c
src/lib/libm/man [netbsd-7]: acosh.3 asinh.3 atanh.3
src/lib/libm/noieee_src [netbsd-7]: n_atan2.c n_cosh.c n_exp.c n_log.c
n_pow.c n_sincos.c n_sinh.c
Added Files:
src/lib/libm/complex [netbsd-7]: cabsl.c cacoshl.c cacosl.c cargl.c
casinhl.c casinl.c catanhl.c catanl.c ccoshl.c ccosl.c
cephes_subrl.c cephes_subrl.h cexpl.c clogl.c cpowl.c csinhl.c
csinl.c csqrtl.c ctanhl.c ctanl.c

Log Message:
Pullup the following revisions, requested by christos in #138:

src/lib/libm/Makefile   1.165-1.166
src/lib/libm/shlib_version  1.14
src/lib/libm/arch/vax/n_atan2.S 1.9
src/lib/libm/arch/vax/n_cabs.S  1.7
src/lib/libm/arch/vax/n_sincos.S1.9
src/lib/libm/arch/vax/n_sqrt.S  1.10-1.11
src/lib/libm/complex/Makefile.inc   1.5-1.8
src/lib/libm/complex/cabsl.c1.1
src/lib/libm/complex/cacoshl.c  1.1
src/lib/libm/complex/cacosl.c   1.1
src/lib/libm/complex/cargl.c1.1
src/lib/libm/complex/casinhl.c  1.1
src/lib/libm/complex/casinl.c   1.1
src/lib/libm/complex/catanhl.c  1.1
src/lib/libm/complex/catanl.c   1.1
src/lib/libm/complex/ccoshl.c   1.1
src/lib/libm/complex/ccosl.c1.1
src/lib/libm/complex/cephes_subrl.c 1.1
src/lib/libm/complex/cephes_subrl.h 1.1
src/lib/libm/complex/cexpl.c1.1
src/lib/libm/complex/clogl.c1.1
src/lib/libm/complex/cpowl.c1.1
src/lib/libm/complex/cprojl.c   1.7
src/lib/libm/complex/csinhl.c   1.1
src/lib/libm/complex/csinl.c1.1
src/lib/libm/complex/csqrtl.c   1.1
src/lib/libm/complex/ctanhl.c   1.1
src/lib/libm/complex/ctanl.c1.1
src/lib/libm/man/acosh.31.17
src/lib/libm/man/asinh.31.17
src/lib/libm/man/atanh.31.17
src/lib/libm/noieee_src/n_atan2.c   1.7
src/lib/libm/noieee_src/n_cosh.c1.9
src/lib/libm/noieee_src/n_exp.c 1.9
src/lib/libm/noieee_src/n_log.c 1.8
src/lib/libm/noieee_src/n_pow.c 1.10-1.11
src/lib/libm/noieee_src/n_sincos.c  1.7
src/lib/libm/noieee_src/n_sinh.c1.8

Import the missing complex support routines from FreeBSD so we can
enable C++ 2011 mode for libstc++.


To generate a diff of this commit:
cvs rdiff -u -r1.164 -r1.164.2.1 src/lib/libm/Makefile
cvs rdiff -u -r1.13 -r1.13.20.1 src/lib/libm/shlib_version
cvs rdiff -u -r1.8 -r1.8.42.1 src/lib/libm/arch/vax/n_atan2.S
cvs rdiff -u -r1.6 -r1.6.42.1 src/lib/libm/arch/vax/n_cabs.S
cvs rdiff -u -r1.8 -r1.8.74.1 src/lib/libm/arch/vax/n_sincos.S
cvs rdiff -u -r1.9 -r1.9.4.1 src/lib/libm/arch/vax/n_sqrt.S
cvs rdiff -u -r1.4 -r1.4.22.1 src/lib/libm/complex/Makefile.inc
cvs rdiff -u -r0 -r1.1.2.2 src/lib/libm/complex/cabsl.c \
src/lib/libm/complex/cacoshl.c src/lib/libm/complex/cacosl.c \
src/lib/libm/complex/cargl.c src/lib/libm/complex/casinhl.c \
src/lib/libm/complex/casinl.c src/lib/libm/complex/catanl.c \
src/lib/libm/complex/ccoshl.c src/lib/libm/complex/ccosl.c \
src/lib/libm/complex/cephes_subrl.h src/lib/libm/complex/cexpl.c \
src/lib/libm/complex/clogl.c src/lib/libm/complex/cpowl.c \
src/lib/libm/complex/csinhl.c src/lib/libm/complex/csinl.c \
src/lib/libm/complex/ctanhl.c src/lib/libm/complex/ctanl.c
cvs rdiff -u -r0 -r1.3.2.2 src/lib/libm/complex/catanhl.c
cvs rdiff -u -r0 -r1.2.2.2 src/lib/libm/complex/cephes_subrl.c \
src/lib/libm/complex/csqrtl.c
cvs rdiff -u -r1.6 -r1.6.20.1 src/lib/libm/complex/cprojl.c
cvs rdiff -u -r1.16 -r1.16.8.1 src/lib/libm/man/acosh.3 \
src/lib/libm/man/asinh.3 src/lib/libm/man/atanh.3
cvs rdiff -u -r1.6 -r1.6.74.1 src/lib/libm/noieee_src/n_atan2.c \
src/lib/libm/noieee_src/n_sincos.c
cvs rdiff -u -r1.8 -r1.8.42.1 src/lib/libm/noieee_src/n_cosh.c \
src/lib/libm/noieee_src/n_exp.c
cvs rdiff -u -r1.7 -r1.7.42.1 src/lib/libm/noieee_src/n_log.c \
src/lib/libm/noieee_src/n_sinh.c
cvs rdiff -u -r1.9 -r1.9.4.1 src/lib/libm/noieee_src/n_pow.c

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



CVS commit: [netbsd-7] src/doc

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 19:37:54 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Tickets #136-#138


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.49 -r1.1.2.50 src/doc/CHANGES-7.0

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



CVS commit: [netbsd-7] src/distrib/sets/lists

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 20:05:16 UTC 2014

Modified Files:
src/distrib/sets/lists/base [netbsd-7]: ad.aarch64 ad.arm ad.mips
ad.powerpc md.amd64 md.sparc64 shl.mi
src/distrib/sets/lists/comp [netbsd-7]: mi
src/distrib/sets/lists/debug [netbsd-7]: ad.aarch64 ad.arm ad.mips
ad.powerpc md.amd64 md.sparc64 shl.mi

Log Message:
Pull up following revision(s) (requested by christos in ticket #138):
distrib/sets/lists/debug/md.sparc64: revision 1.65
distrib/sets/lists/debug/md.amd64: revision 1.66
distrib/sets/lists/debug/ad.mips: revision 1.42
distrib/sets/lists/base/shl.mi: revision 1.717
distrib/sets/lists/debug/ad.aarch64: revision 1.7
distrib/sets/lists/base/ad.mips: revision 1.52
distrib/sets/lists/debug/shl.mi: revision 1.76
distrib/sets/lists/base/ad.powerpc: revision 1.21
distrib/sets/lists/debug/ad.arm: revision 1.46
distrib/sets/lists/base/ad.aarch64: revision 1.8
distrib/sets/lists/base/md.amd64: revision 1.248
distrib/sets/lists/debug/ad.powerpc: revision 1.22
distrib/sets/lists/base/md.sparc64: revision 1.236
distrib/sets/lists/comp/mi: revision 1.1915
distrib/sets/lists/comp/mi: revision 1.1916
distrib/sets/lists/base/ad.arm: revision 1.57
Bump libm for long double complex functions.
Add a bunch of new libm/complex man pages.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.2.2.1 src/distrib/sets/lists/base/ad.aarch64
cvs rdiff -u -r1.54 -r1.54.2.1 src/distrib/sets/lists/base/ad.arm
cvs rdiff -u -r1.48 -r1.48.2.1 src/distrib/sets/lists/base/ad.mips
cvs rdiff -u -r1.17 -r1.17.2.1 src/distrib/sets/lists/base/ad.powerpc
cvs rdiff -u -r1.244 -r1.244.2.1 src/distrib/sets/lists/base/md.amd64
cvs rdiff -u -r1.232 -r1.232.2.1 src/distrib/sets/lists/base/md.sparc64
cvs rdiff -u -r1.712 -r1.712.2.1 src/distrib/sets/lists/base/shl.mi
cvs rdiff -u -r1.1906 -r1.1906.2.1 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.2 -r1.2.2.1 src/distrib/sets/lists/debug/ad.aarch64
cvs rdiff -u -r1.42 -r1.42.2.1 src/distrib/sets/lists/debug/ad.arm
cvs rdiff -u -r1.38 -r1.38.2.1 src/distrib/sets/lists/debug/ad.mips
cvs rdiff -u -r1.18 -r1.18.2.1 src/distrib/sets/lists/debug/ad.powerpc
cvs rdiff -u -r1.63 -r1.63.2.1 src/distrib/sets/lists/debug/md.amd64
cvs rdiff -u -r1.61 -r1.61.2.1 src/distrib/sets/lists/debug/md.sparc64
cvs rdiff -u -r1.71 -r1.71.2.1 src/distrib/sets/lists/debug/shl.mi

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



CVS commit: [netbsd-7] src/doc

2014-10-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 13 20:07:11 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Note additional set lists files for #138.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.50 -r1.1.2.51 src/doc/CHANGES-7.0

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



CVS commit: src/common/lib/libc/arch

2014-10-14 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Oct 14 07:25:05 UTC 2014

Modified Files:
src/common/lib/libc/arch/arm/atomic: Makefile.inc
src/common/lib/libc/arch/hppa/atomic: Makefile.inc

Log Message:
Provide C++ 2011  support functions for hppa and arm.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/common/lib/libc/arch/arm/atomic/Makefile.inc
cvs rdiff -u -r1.12 -r1.13 src/common/lib/libc/arch/hppa/atomic/Makefile.inc

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



CVS commit: [netbsd-7] src/sys/arch/x86/x86

2014-10-14 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Oct 14 07:37:37 UTC 2014

Modified Files:
src/sys/arch/x86/x86 [netbsd-7]: pmap.c

Log Message:
Pull up following revision(s) (requested by bouyer in ticket #140):
sys/arch/x86/x86/pmap.c: revision 1.184
Add a missing || defined(XEN) which cause Xen non-DIAGNOSTIC kernels
to panic at boot.


To generate a diff of this commit:
cvs rdiff -u -r1.183 -r1.183.2.1 src/sys/arch/x86/x86/pmap.c

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



CVS commit: [netbsd-7] src/doc

2014-10-14 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Oct 14 07:38:44 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Ticket #140


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.51 -r1.1.2.52 src/doc/CHANGES-7.0

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



CVS commit: [netbsd-7] src/sys/fs/puffs

2014-10-14 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Oct 14 08:16:03 UTC 2014

Modified Files:
src/sys/fs/puffs [netbsd-7]: puffs_vnops.c

Log Message:
Pull up revisions 1.192-1.194: fix debug printf formatting and make
it compile without debugging enabled.


To generate a diff of this commit:
cvs rdiff -u -r1.182.2.6 -r1.182.2.7 src/sys/fs/puffs/puffs_vnops.c

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



CVS commit: [netbsd-7] src/doc

2014-10-14 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Oct 14 08:17:28 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Update Ticket #136


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.52 -r1.1.2.53 src/doc/CHANGES-7.0

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



CVS commit: [netbsd-7] src/external/gpl3/gcc

2014-10-15 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Oct 15 08:06:26 UTC 2014

Modified Files:
src/external/gpl3/gcc/lib/crtstuff/arch [netbsd-7]: hppa.mk m68k.mk
vax.mk
src/external/gpl3/gcc/lib/libbacktrace/arch/earm [netbsd-7]:
backtrace-supported.h config.h
src/external/gpl3/gcc/lib/libbacktrace/arch/earmeb [netbsd-7]:
backtrace-supported.h config.h
src/external/gpl3/gcc/lib/libbacktrace/arch/earmhf [netbsd-7]:
backtrace-supported.h config.h
src/external/gpl3/gcc/lib/libbacktrace/arch/earmhfeb [netbsd-7]:
backtrace-supported.h config.h
src/external/gpl3/gcc/lib/libbacktrace/arch/earmv4 [netbsd-7]:
backtrace-supported.h config.h
src/external/gpl3/gcc/lib/libbacktrace/arch/earmv4eb [netbsd-7]:
backtrace-supported.h config.h
src/external/gpl3/gcc/lib/libbacktrace/arch/earmv6 [netbsd-7]:
backtrace-supported.h config.h
src/external/gpl3/gcc/lib/libbacktrace/arch/earmv6eb [netbsd-7]:
backtrace-supported.h config.h
src/external/gpl3/gcc/lib/libbacktrace/arch/earmv6hf [netbsd-7]:
backtrace-supported.h config.h
src/external/gpl3/gcc/lib/libbacktrace/arch/earmv6hfeb [netbsd-7]:
backtrace-supported.h config.h
src/external/gpl3/gcc/lib/libbacktrace/arch/earmv7 [netbsd-7]:
backtrace-supported.h config.h
src/external/gpl3/gcc/lib/libbacktrace/arch/earmv7eb [netbsd-7]:
backtrace-supported.h config.h
src/external/gpl3/gcc/lib/libbacktrace/arch/earmv7hf [netbsd-7]:
backtrace-supported.h config.h
src/external/gpl3/gcc/lib/libbacktrace/arch/earmv7hfeb [netbsd-7]:
backtrace-supported.h config.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/alpha [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/arm [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/armeb [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earm [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earmeb [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earmhf [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earmhfeb [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv4 [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv4eb [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv6 [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv6eb [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv6hf [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv6hfeb [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv7 [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv7eb [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv7hf [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/earmv7hfeb [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/hppa [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/i386 [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/m68k [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/mips64eb [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/mips64el [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/mipseb [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/mipsel [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/powerpc [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/sh3eb [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/sh3el [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/sparc [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/sparc64 [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/vax [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libgcc/libgcov/arch/x86_64 [netbsd-7]:
gcov-iov.h
src/external/gpl3/gcc/lib/libiberty [netbsd-7]: defs.mk
src/external/gpl3/gcc/lib/libiberty/arch/alpha [netbsd-7]: config.h
src/external/gpl3/gcc/lib/libiberty/arch/arm [netbsd-7

CVS commit: [netbsd-7] src/sys/arch/zaurus/stand/zbsdmod

2014-10-15 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Oct 15 08:37:34 UTC 2014

Modified Files:
src/sys/arch/zaurus/stand/zbsdmod [netbsd-7]: Makefile

Log Message:
Pull up following revision(s) (requested by nonaka in ticket #141):
sys/arch/zaurus/stand/zbsdmod/Makefile: revision 1.9
Avoid "unhandled relocation of type 3 for" error when load module.
"insmod zbsdmod.o" is successful now.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.8.4.1 src/sys/arch/zaurus/stand/zbsdmod/Makefile

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



CVS commit: [netbsd-7] src/sys/dev/usb

2014-10-15 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Oct 15 08:43:08 UTC 2014

Modified Files:
src/sys/dev/usb [netbsd-7]: u3g.c usbdevs

Log Message:
Pull up following revision(s) (requested by christos in ticket #142):
sys/dev/usb/u3g.c: revision 1.31
sys/dev/usb/usbdevs: revision 1.681
sys/dev/usb/usbdevs: revision 1.682
PR/49233: Ben Gergely: Add huawei e353 to u3g
(factor out some common code in the process)


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.30.4.1 src/sys/dev/usb/u3g.c
cvs rdiff -u -r1.680 -r1.680.2.1 src/sys/dev/usb/usbdevs

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



CVS commit: [netbsd-7] src/sys/dev/usb

2014-10-15 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Oct 15 08:44:36 UTC 2014

Modified Files:
src/sys/dev/usb [netbsd-7]: usbdevs.h usbdevs_data.h

Log Message:
regen for #142


To generate a diff of this commit:
cvs rdiff -u -r1.672 -r1.672.2.1 src/sys/dev/usb/usbdevs.h
cvs rdiff -u -r1.673 -r1.673.2.1 src/sys/dev/usb/usbdevs_data.h

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



CVS commit: [netbsd-7] src/doc

2014-10-15 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Oct 15 08:46:21 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Tickets 141-143


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.54 -r1.1.2.55 src/doc/CHANGES-7.0

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



CVS commit: [netbsd-7] src/sys

2014-10-17 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Fri Oct 17 07:14:33 UTC 2014

Modified Files:
src/sys/dev/pci [netbsd-7]: pci_map.c pcivar.h radeonfb.c
src/sys/external/bsd/drm2/include/linux [netbsd-7]: pci.h

Log Message:
Pull up following revision(s) (requested by riastradh in ticket #144):
sys/dev/pci/radeonfb.c: revision 1.85
sys/dev/pci/pcivar.h: revision 1.100
sys/dev/pci/pci_map.c: revision 1.31
sys/external/bsd/drm2/include/linux/pci.h: revision 1.9
Generalize pci_find_rom and use it to locate x86 video ROM in drm2.
- Make pci_find_rom take the ROM `BAR' size as a parameter, instead
  of using pci_find_mem with the ROM `BAR' to detect the size.
- Use it to find the x86 video ROM in [0xc, 0xe) in drm2,
  when nothing else reports that location.
- Adapt the one other caller in radeonfb, which already has the
  maximum ROM size handy (romsz).
XXX pullup to netbsd-7


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.30.12.1 src/sys/dev/pci/pci_map.c
cvs rdiff -u -r1.99 -r1.99.4.1 src/sys/dev/pci/pcivar.h
cvs rdiff -u -r1.84 -r1.84.2.1 src/sys/dev/pci/radeonfb.c
cvs rdiff -u -r1.7.2.1 -r1.7.2.2 \
src/sys/external/bsd/drm2/include/linux/pci.h

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



CVS commit: [netbsd-7] src/doc

2014-10-17 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Fri Oct 17 07:15:34 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Ticket #144


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.55 -r1.1.2.56 src/doc/CHANGES-7.0

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



CVS commit: [netbsd-7] src/crypto/external/bsd/openssh/dist

2014-10-17 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Fri Oct 17 16:12:36 UTC 2014

Modified Files:
src/crypto/external/bsd/openssh/dist [netbsd-7]: auth.c

Log Message:
Pull up following revision(s) (requested by christos in ticket #145):
crypto/external/bsd/openssh/dist/auth.c: revision 1.9
for consistency use options.use_dns when getting the canonical hostname.
[we do the same below for hosts.allow and deny] reported by rudolf.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.8.4.1 src/crypto/external/bsd/openssh/dist/auth.c

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



CVS commit: [netbsd-7] src/doc

2014-10-17 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Fri Oct 17 16:13:35 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Ticket #145


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.56 -r1.1.2.57 src/doc/CHANGES-7.0

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

2014-10-17 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Fri Oct 17 18:45:14 UTC 2014

Modified Files:
src/sys/arch/evbarm/conf: HPT5325 OPENBLOCKS_A6 SHEEVAPLUG

Log Message:
Fix the names of the (commented out) Kirwood L2 cache options.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/evbarm/conf/HPT5325 \
src/sys/arch/evbarm/conf/OPENBLOCKS_A6
cvs rdiff -u -r1.45 -r1.46 src/sys/arch/evbarm/conf/SHEEVAPLUG

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

2014-10-18 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Oct 18 11:02:14 UTC 2014

Modified Files:
src/sys/arch/arm/allwinner: awin_gige.c

Log Message:
Fix previous.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/arm/allwinner/awin_gige.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

2014-10-18 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Oct 18 12:43:26 UTC 2014

Modified Files:
src/sys/dev/ic: dwc_gmac_reg.h

Log Message:
Fix GMAC_MII_CLKMASK and add a few clk setup bits for it.


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

2014-10-18 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Oct 18 12:45:25 UTC 2014

Modified Files:
src/sys/arch/arm/allwinner: awin_gige.c

Log Message:
Use symbolic constant instead of (wrong) magic number for mii clk selection.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/arm/allwinner/awin_gige.c

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



CVS commit: [netbsd-7] src/sys/compat/freebsd

2014-10-18 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Oct 18 14:04:58 UTC 2014

Modified Files:
src/sys/compat/freebsd [netbsd-7]: freebsd_sysctl.c

Log Message:
Pull up following revision(s) (requested by maxv in ticket #146):
sys/compat/freebsd/freebsd_sysctl.c: revision 1.17
I'm not sure reading from an unsanitized userland pointer is a good idea.
Some users might be tempted to give 0x01, in which case the kernel will
crash.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.16.4.1 src/sys/compat/freebsd/freebsd_sysctl.c

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



CVS commit: [netbsd-7] src/doc

2014-10-18 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Oct 18 14:06:58 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Ticket #146


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.57 -r1.1.2.58 src/doc/CHANGES-7.0

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



CVS commit: [netbsd-7] src/crypto/external/bsd/openssl/dist

2014-10-19 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 19 09:13:01 UTC 2014

Modified Files:
src/crypto/external/bsd/openssl/dist [netbsd-7]: CHANGES Configure
Makefile NEWS README e_os.h makevms.com openssl.spec
src/crypto/external/bsd/openssl/dist/apps [netbsd-7]: makeapps.com
s_client.c
src/crypto/external/bsd/openssl/dist/crypto [netbsd-7]: LPdir_vms.c
LPdir_win.c Makefile crypto-lib.com ebcdic.h install-crypto.com
opensslconf.h opensslv.h ossl_typ.h
src/crypto/external/bsd/openssl/dist/crypto/aes/asm [netbsd-7]:
aesni-x86_64.pl
src/crypto/external/bsd/openssl/dist/crypto/asn1 [netbsd-7]: a_strex.c
src/crypto/external/bsd/openssl/dist/crypto/bn [netbsd-7]: bn_exp.c
bn_nist.c exptest.c
src/crypto/external/bsd/openssl/dist/crypto/bn/asm [netbsd-7]:
x86_64-gcc.c
src/crypto/external/bsd/openssl/dist/crypto/dsa [netbsd-7]: dsa_ameth.c
src/crypto/external/bsd/openssl/dist/crypto/ec [netbsd-7]: ec.h
ec2_smpl.c ec_ameth.c ec_asn1.c ecp_mont.c ecp_nist.c ecp_smpl.c
ectest.c
src/crypto/external/bsd/openssl/dist/crypto/err [netbsd-7]: openssl.ec
src/crypto/external/bsd/openssl/dist/crypto/evp [netbsd-7]: Makefile
e_aes.c evp_enc.c
src/crypto/external/bsd/openssl/dist/crypto/md5/asm [netbsd-7]:
md5-x86_64.pl
src/crypto/external/bsd/openssl/dist/crypto/modes [netbsd-7]: modes.h
src/crypto/external/bsd/openssl/dist/crypto/ocsp [netbsd-7]: ocsp_vfy.c
src/crypto/external/bsd/openssl/dist/crypto/pkcs7 [netbsd-7]: pkcs7.h
src/crypto/external/bsd/openssl/dist/crypto/pqueue [netbsd-7]: pqueue.h
src/crypto/external/bsd/openssl/dist/crypto/rsa [netbsd-7]: Makefile
rsa.h rsa_err.c rsa_oaep.c rsa_pk1.c rsa_sign.c
src/crypto/external/bsd/openssl/dist/crypto/stack [netbsd-7]:
safestack.h
src/crypto/external/bsd/openssl/dist/doc/apps [netbsd-7]: dgst.pod
src/crypto/external/bsd/openssl/dist/doc/crypto [netbsd-7]:
BIO_s_accept.pod EVP_DigestInit.pod EVP_DigestVerifyInit.pod
EVP_EncryptInit.pod EVP_PKEY_set1_RSA.pod EVP_PKEY_sign.pod
src/crypto/external/bsd/openssl/dist/doc/ssl [netbsd-7]:
SSL_CTX_set_tmp_dh_callback.pod
src/crypto/external/bsd/openssl/dist/engines [netbsd-7]:
makeengines.com
src/crypto/external/bsd/openssl/dist/ssl [netbsd-7]: Makefile d1_both.c
d1_lib.c d1_srtp.c dtls1.h s23_clnt.c s23_srvr.c s2_lib.c s3_cbc.c
s3_clnt.c s3_enc.c s3_lib.c s3_pkt.c s3_srvr.c srtp.h ssl-lib.com
ssl.h ssl3.h ssl_err.c ssl_lib.c t1_enc.c t1_lib.c tls1.h
src/crypto/external/bsd/openssl/dist/test [netbsd-7]: Makefile
maketests.com tests.com testssl
src/crypto/external/bsd/openssl/dist/util [netbsd-7]: mk1mf.pl mkdef.pl
ssleay.num
Added Files:
src/crypto/external/bsd/openssl/dist/crypto [netbsd-7]:
constant_time_locl.h

Log Message:
Pullup the following revisions, requested by spz in ticket #147:

crypto/external/bsd/openssl/dist/CHANGES1.2 (patch)
crypto/external/bsd/openssl/dist/Configure  1.9 (patch)
crypto/external/bsd/openssl/dist/Makefile   1.3 (patch)
crypto/external/bsd/openssl/dist/NEWS   1.2 (patch)
crypto/external/bsd/openssl/dist/README 1.2 (patch)
crypto/external/bsd/openssl/dist/apps/makeapps.com 1.2  (patch)
crypto/external/bsd/openssl/dist/apps/s_client.c 1.7(patch)
crypto/external/bsd/openssl/dist/crypto/LPdir_vms.c 1.2 (patch)
crypto/external/bsd/openssl/dist/crypto/LPdir_win.c 1.2 (patch)
crypto/external/bsd/openssl/dist/crypto/Makefile 1.2(patch)
crypto/external/bsd/openssl/dist/crypto/aes/asm/aesni-x86_64.pl 1.2 (patch)
crypto/external/bsd/openssl/dist/crypto/asn1/a_strex.c 1.2  (patch)
crypto/external/bsd/openssl/dist/crypto/bn/asm/x86_64-gcc.c 1.2 (patch)
crypto/external/bsd/openssl/dist/crypto/bn/bn_exp.c 1.7 (patch)
crypto/external/bsd/openssl/dist/crypto/bn/bn_nist.c 1.2(patch)
crypto/external/bsd/openssl/dist/crypto/bn/exptest.c 1.2(patch)
crypto/external/bsd/openssl/dist/crypto/constant_time_locl.h 1.1(patch)
crypto/external/bsd/openssl/dist/crypto/crypto-lib.com 1.2  (patch)
crypto/external/bsd/openssl/dist/crypto/dsa/dsa_ameth.c 1.2 (patch)
crypto/external/bsd/openssl/dist/crypto/ebcdic.h 1.2(patch)
crypto/external/bsd/openssl/dist/crypto/ec/ec.h 1.2 (patch)
crypto/external/bsd/openssl/dist/crypto/ec/ec2_smpl.c 1.2   (patch)
crypto/external/bsd/openssl

CVS commit: [netbsd-7] src/usr.sbin/sysinst

2014-10-19 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 19 09:14:51 UTC 2014

Modified Files:
src/usr.sbin/sysinst [netbsd-7]: menus.mi

Log Message:
Pull up following revision(s) (requested by snj in ticket #149):
usr.sbin/sysinst/menus.mi: revision 1.7
Make the option to abort pkgsrc fetching/extraction actually work.
Previously, if the network was not set up and you couldn't fetch
pkgsrc, you'd get stuck here, unable to make it back to the parent
menu.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.4.4.1 src/usr.sbin/sysinst/menus.mi

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



CVS commit: [netbsd-7] src/doc

2014-10-19 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 19 09:15:59 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Tickets #147 and #149


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.58 -r1.1.2.59 src/doc/CHANGES-7.0

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

2014-10-19 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 19 09:39:33 UTC 2014

Modified Files:
src/sys/dev/ic: dwc_gmac_reg.h

Log Message:
Add more bits and comments, parts from jmcneill.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/ic/dwc_gmac_reg.h

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



CVS commit: [netbsd-7] src/sys/kern

2014-10-19 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 19 10:02:59 UTC 2014

Modified Files:
src/sys/kern [netbsd-7]: vfs_vnode.c

Log Message:
Pull up following revision(s) (requested by hannken in ticket #150):
sys/kern/vfs_vnode.c: revision 1.39
When creating a vnode with vcache_get() mark the vnode VI_CHANGING until
it is fully initialised.  It may be on the specnode list before it is
fully initialised and revoking it then would panic.
Should prevent the panic from PR kern/49171 (panic when closing a pty).


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.37.2.1 src/sys/kern/vfs_vnode.c

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



CVS commit: [netbsd-7] src/doc

2014-10-19 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 19 10:04:00 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Ticket #150


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.59 -r1.1.2.60 src/doc/CHANGES-7.0

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

2014-10-19 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 19 11:37:17 UTC 2014

Modified Files:
src/sys/dev/ic: dwc_gmac_reg.h

Log Message:
Add more comments


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/ic/dwc_gmac_reg.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

2014-10-19 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 19 11:45:01 UTC 2014

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

Log Message:
Add more MAC filter setup, some DMA burst configuration (from jmcneill),
actually enable RX interrupts (spotted by jmcneill), add RX handling
code and debug code.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/ic/dwc_gmac.c

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



CVS commit: [netbsd-7] src/sys

2014-10-19 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 19 15:22:00 UTC 2014

Modified Files:
src/sys/arch/arm/broadcom [netbsd-7]: bcm2835_vcaudio.c
src/sys/external/bsd/vchiq/dist/interface/vchiq_arm [netbsd-7]:
vchiq_shim.c

Log Message:
Pull up following revision(s) (requested by skrll in ticket #151):
sys/external/bsd/vchiq/dist/interface/vchiq_arm/vchiq_shim.c: revision 
1.5
sys/arch/arm/broadcom/bcm2835_vcaudio.c: revision 1.4
sys/arch/arm/broadcom/bcm2835_vcaudio.c: revision 1.5
sys/arch/arm/broadcom/bcm2835_vcaudio.c: revision 1.6
sys/arch/arm/broadcom/bcm2835_vcaudio.c: revision 1.7
use a fixed frequency (48kHz) and configure the audio server at attach time, 
instead of at the beginning of playback
improved playback error handling, and get rid of junk+silence insertion at the 
beginning of playback
expose vchi_get_peer_version
capture peer version; if less than 2, bail out as bulk mode is not supported. 
report the peer version with "audioctl version"
Some improvements that make playback mostly reliable for me - the final
piece of the jigaw is probably in vchiq:
- prefill vchiq with a number (currently 2) blocks of audio before
   starting
- use a kthread as workqueue isn't suited to our usage.
- don't drain on stopping as for some reason it leaves data behind.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.3.4.1 src/sys/arch/arm/broadcom/bcm2835_vcaudio.c
cvs rdiff -u -r1.4 -r1.4.2.1 \
src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/vchiq_shim.c

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



CVS commit: [netbsd-7] src/doc

2014-10-19 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 19 15:24:07 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Tickets #148 and #151


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.60 -r1.1.2.61 src/doc/CHANGES-7.0

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



CVS commit: [netbsd-7] src/sys/arch

2014-10-19 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 19 16:11:06 UTC 2014

Modified Files:
src/sys/arch/amd64/include [netbsd-7]: Makefile.inc
src/sys/arch/i386/include [netbsd-7]: Makefile.inc

Log Message:
Pull up following revision(s) (requested by joerg in ticket #152):
sys/arch/amd64/include/Makefile.inc: revision 1.5
sys/arch/i386/include/Makefile.inc: revision 1.3
Disable SSE and AVX for kernel modules too.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.4.14.1 src/sys/arch/amd64/include/Makefile.inc
cvs rdiff -u -r1.2 -r1.2.2.1 src/sys/arch/i386/include/Makefile.inc

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



CVS commit: [netbsd-7] src/doc

2014-10-19 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 19 16:12:22 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Ticket #152


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.61 -r1.1.2.62 src/doc/CHANGES-7.0

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



CVS commit: [netbsd-7] src/sys

2014-10-20 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 20 09:55:55 UTC 2014

Modified Files:
src/sys/compat/svr4 [netbsd-7]: svr4_stat.c
src/sys/dev/dm [netbsd-7]: dm_target_snapshot.c
src/sys/dev/if_ndis [netbsd-7]: if_ndis_pci.c
src/sys/fs/smbfs [netbsd-7]: smbfs_smb.c
src/sys/ufs/ext2fs [netbsd-7]: ext2fs_readwrite.c

Log Message:
Pullup the following revisions, requested by maxv in ticket #148:

sys/compat/svr4/svr4_stat.c 1.70
sys/dev/dm/dm_target_snapshot.c 1.17
sys/dev/if_ndis/if_ndis_pci.c   1.20
sys/fs/smbfs/smbfs_smb.c1.45
sys/ufs/ext2fs/ext2fs_readwrite.c   1.65

Various fixes: two memory leaks, a typo, a dead compiler condition and
unused macros, respectively in if_ndis and dm, smbfs, svr4 and ext2fs.


To generate a diff of this commit:
cvs rdiff -u -r1.69 -r1.69.40.1 src/sys/compat/svr4/svr4_stat.c
cvs rdiff -u -r1.16 -r1.16.2.1 src/sys/dev/dm/dm_target_snapshot.c
cvs rdiff -u -r1.19 -r1.19.12.1 src/sys/dev/if_ndis/if_ndis_pci.c
cvs rdiff -u -r1.44 -r1.44.12.1 src/sys/fs/smbfs/smbfs_smb.c
cvs rdiff -u -r1.64 -r1.64.8.1 src/sys/ufs/ext2fs/ext2fs_readwrite.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

2014-10-20 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 20 10:31:32 UTC 2014

Modified Files:
src/crypto/external/bsd/openssh/dist: umac.c

Log Message:
Try to make this buildable on big endian machines.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/crypto/external/bsd/openssh/dist/umac.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

2014-10-20 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 20 19:36:03 UTC 2014

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

Log Message:
Cleanup debug code a bit.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/ic/dwc_gmac.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

2014-10-20 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 20 19:49:34 UTC 2014

Modified Files:
src/sys/dev/ic: dwc_gmac_reg.h

Log Message:
The RXINT bit is a RX interrupt DISABLE bit.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/ic/dwc_gmac_reg.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

2014-10-20 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 20 19:51:40 UTC 2014

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

Log Message:
Consistently set the RX descriptors controll word - do not disable RX
interrupt and set chain mode. Now it does not run off the end of the
ring after 512 packets any more.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/dev/ic/dwc_gmac.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/allwinner

2014-10-20 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 20 20:02:16 UTC 2014

Modified Files:
src/sys/arch/arm/allwinner: awin_gige.c

Log Message:
For now the interrupt handler is not MPSAFE


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/arm/allwinner/awin_gige.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

2014-10-20 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 20 20:08:01 UTC 2014

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

Log Message:
Cosmetics - block interrupts while enabling different interrupt sources.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/dev/ic/dwc_gmac.c

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



CVS commit: src/usr.sbin/sysinst

2014-10-21 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Oct 21 18:19:17 UTC 2014

Modified Files:
src/usr.sbin/sysinst: mbr.c

Log Message:
On architectures that have no BIOS (and so do not set a BIOS geometry)
we need to initialize the globals bsec, bcyl and bhead before using
them.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/usr.sbin/sysinst/mbr.c

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



CVS commit: src/sys/sys

2014-10-23 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 23 08:55:32 UTC 2014

Modified Files:
src/sys/sys: exec_elf.h

Log Message:
Add standard size_t dance


To generate a diff of this commit:
cvs rdiff -u -r1.144 -r1.145 src/sys/sys/exec_elf.h

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



CVS commit: src/lib

2014-10-23 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 23 15:29:06 UTC 2014

Modified Files:
src/lib: Makefile

Log Message:
Only visit libasan if ${HAVE_GCC} == "48"


To generate a diff of this commit:
cvs rdiff -u -r1.216 -r1.217 src/lib/Makefile

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



CVS commit: [netbsd-7] src/sys/netinet

2014-10-24 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Fri Oct 24 07:28:14 UTC 2014

Modified Files:
src/sys/netinet [netbsd-7]: tcp_output.c

Log Message:
Pull up following revision(s) (requested by hikaru in ticket #154):
sys/netinet/tcp_output.c: revision 1.177
Fix wrong condition checking TSO capability.
ipsec_used is not necessary condition.
IPsec outbound policy will not be checked when ipsec_used is false.


To generate a diff of this commit:
cvs rdiff -u -r1.176 -r1.176.2.1 src/sys/netinet/tcp_output.c

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



CVS commit: [netbsd-7] src/distrib/sets

2014-10-24 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Fri Oct 24 07:30:14 UTC 2014

Modified Files:
src/distrib/sets [netbsd-7]: join.awk

Log Message:
Pull up following revision(s) (requested by apbapb in ticket #155):
distrib/sets/join.awk: revision 1.4
distrib/sets/join.awk: revision 1.5
Add an unvis function and use it on file names in mtree specs.
This should correct the problem that ./bin/[ was missing from the
base.tgz set, despite being listed in src/distrib/sets/base/mi
and being present in METALOG.  The corresponding entry in
METALOG.sanitised has ./bin/\133 instead of ./bin/[, and that made
join.awk omit it.
XXX: The unvis() implementation in join.awk handles only a subset
of the syntax, but it's probably good enough for now.
XXX: The file names should probably be canonicalised by
vis(unvis(name)), but at present none of the file names in the set
lists really need it.
XXX: It may be a bug that entries in the set lists without
corresponding entries in METALOG are silently ignored by join.awk.
Add vis() function, and canonicalise file names via vis(unvis($1)).
XXX: The vis() function is very limited, due to the absence of ord()
in NetBSD's awk.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.3.42.1 src/distrib/sets/join.awk

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



CVS commit: [netbsd-7] src/doc

2014-10-24 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Fri Oct 24 07:32:25 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Tickets #154 and #155


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.63 -r1.1.2.64 src/doc/CHANGES-7.0

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



CVS commit: [netbsd-7] src/sys/kern

2014-10-25 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Oct 25 10:00:47 UTC 2014

Modified Files:
src/sys/kern [netbsd-7]: kern_exec.c

Log Message:
Pull up following revision(s) (requested by dholland in ticket #156):
sys/kern/kern_exec.c: revision 1.409
PR/49287: David Holland: Skip the right number of bytes to go over the first
argument in the argv vector. Fixes netbsd32 script execution, where you lost
the first argument because it skipped 8 bytes instead of 4.


To generate a diff of this commit:
cvs rdiff -u -r1.408 -r1.408.2.1 src/sys/kern/kern_exec.c

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



CVS commit: [netbsd-7] src/doc

2014-10-25 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Oct 25 10:02:15 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Ticket #156


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.65 -r1.1.2.66 src/doc/CHANGES-7.0

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



CVS commit: [netbsd-7] src/sys/netinet

2014-10-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 26 09:48:18 UTC 2014

Modified Files:
src/sys/netinet [netbsd-7]: tcp_output.c

Log Message:
Pull up following revision(s) (requested by christos in ticket #157):
sys/netinet/tcp_output.c: revision 1.178
Avoid stack overflow when SACK and TCP_SIGNATURE are both present. Thanks
to Jonathan Looney for pointing this out.


To generate a diff of this commit:
cvs rdiff -u -r1.176.2.1 -r1.176.2.2 src/sys/netinet/tcp_output.c

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



CVS commit: [netbsd-7] src/doc

2014-10-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 26 09:49:58 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Ticket #157


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.66 -r1.1.2.67 src/doc/CHANGES-7.0

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



CVS commit: [netbsd-7] src/usr.bin/ftp

2014-10-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 26 16:47:12 UTC 2014

Modified Files:
src/usr.bin/ftp [netbsd-7]: fetch.c

Log Message:
Pull up following revision(s) (requested by christos in ticket #158):
usr.bin/ftp/fetch.c: revision 1.206
don't pay attention to special characters if they don't come from the command
line (from jmcneill)


To generate a diff of this commit:
cvs rdiff -u -r1.205 -r1.205.4.1 src/usr.bin/ftp/fetch.c

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



CVS commit: [netbsd-7] src/doc

2014-10-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 26 16:48:36 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Ticket #158


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.67 -r1.1.2.68 src/doc/CHANGES-7.0

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

2014-10-26 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Oct 26 17:39:16 UTC 2014

Modified Files:
src/sys/dev/ic: dwc_gmac.c dwc_gmac_var.h

Log Message:
Greatly simplify ioctl handling by fully relying on ether_ioctl and a
ifflags-change callback, together with a shadow copy of the last active
interface flags.
Fix ALLMULTI vs. PROMISC handling.
Fix mac hash filter calculation by reversing the crc bits (pointed out
by Jared).


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/dev/ic/dwc_gmac.c
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/ic/dwc_gmac_var.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/arm/allwinner

2014-10-27 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 27 08:51:59 UTC 2014

Modified Files:
src/sys/arch/arm/allwinner: awin_rtc.c

Log Message:
Sanity-check the date before storing it in the RTC, error out for non
representable dates.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/allwinner/awin_rtc.c

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



CVS commit: src

2014-10-27 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 27 09:06:35 UTC 2014

Modified Files:
src: UPDATING

Log Message:
Add an entry for recent pppd modules mishap.


To generate a diff of this commit:
cvs rdiff -u -r1.257 -r1.258 src/UPDATING

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



CVS commit: [netbsd-7] src/sys/netinet6

2014-10-27 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 27 13:39:11 UTC 2014

Modified Files:
src/sys/netinet6 [netbsd-7]: nd6.c

Log Message:
Pull up following revision(s) (requested by roy in ticket #159):
sys/netinet6/nd6.c: revision 1.153
Tests for neighbour now work correctly on bridge(4) and carp(4) interfaces.


To generate a diff of this commit:
cvs rdiff -u -r1.152 -r1.152.2.1 src/sys/netinet6/nd6.c

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



CVS commit: [netbsd-7] src

2014-10-27 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 27 13:42:37 UTC 2014

Modified Files:
src/sbin/ifconfig [netbsd-7]: af_inet6.c ifconfig.8
src/sys/netinet6 [netbsd-7]: in6.c

Log Message:
Pull up following revision(s) (requested by roy in ticket #160):
sbin/ifconfig/af_inet6.c: revision 1.30
sbin/ifconfig/ifconfig.8: revision 1.109
sys/netinet6/in6.c: revision 1.177
Remove the ability for userland to toggle IN6_IFF_TENTATIVE.
Preserve IN6_IFF_TENTATIVE when updating address flags.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.29.4.1 src/sbin/ifconfig/af_inet6.c
cvs rdiff -u -r1.106.4.1 -r1.106.4.2 src/sbin/ifconfig/ifconfig.8
cvs rdiff -u -r1.174 -r1.174.2.1 src/sys/netinet6/in6.c

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



CVS commit: [netbsd-7] src/doc

2014-10-27 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Oct 27 13:43:43 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Tickets #159 and #160


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.68 -r1.1.2.69 src/doc/CHANGES-7.0

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



CVS commit: src/libexec/ld.elf_so

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 07:53:42 UTC 2014

Modified Files:
src/libexec/ld.elf_so: map_object.c

Log Message:
Avoid use after free, reported by the coverity scanner.


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 src/libexec/ld.elf_so/map_object.c

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



CVS commit: [netbsd-7] src/sys/external/bsd/drm2/include/linux

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 09:20:47 UTC 2014

Modified Files:
src/sys/external/bsd/drm2/include/linux [netbsd-7]: sched.h

Log Message:
Pull up following revision(s) (requested by nonaka in ticket #161):
sys/external/bsd/drm2/include/linux/sched.h: revision 1.4
Don't call kpause(9) if cold.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.3.2.1 src/sys/external/bsd/drm2/include/linux/sched.h

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



CVS commit: [netbsd-7] src/sys/dev/pci/hdaudio

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 10:36:52 UTC 2014

Modified Files:
src/sys/dev/pci/hdaudio [netbsd-7]: hdaudio_pci.c

Log Message:
Pull up following revision(s) (requested by nonaka in ticket #162):
sys/dev/pci/hdaudio/hdaudio_pci.c: revision 1.13
disestalish interrupt and unmap register when attach failed.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.12.4.1 src/sys/dev/pci/hdaudio/hdaudio_pci.c

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



CVS commit: [netbsd-7] src/doc

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 10:44:07 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Tickets #161 and #162


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.69 -r1.1.2.70 src/doc/CHANGES-7.0

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



CVS commit: [netbsd-7] src/sys/compat/linux/arch

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 11:51:18 UTC 2014

Modified Files:
src/sys/compat/linux/arch/i386 [netbsd-7]: linux_ptrace.c
src/sys/compat/linux/arch/powerpc [netbsd-7]: linux_ptrace.c

Log Message:
Pull up following revision(s) (requested by maxv in ticket #163):
sys/compat/linux/arch/i386/linux_ptrace.c: revision 1.29
sys/compat/linux/arch/powerpc/linux_ptrace.c: revision 1.26
sys/compat/linux/arch/powerpc/linux_ptrace.c: revision 1.27
Fix four memory leaks in compat/linux.


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.28.2.1 src/sys/compat/linux/arch/i386/linux_ptrace.c
cvs rdiff -u -r1.25 -r1.25.2.1 \
src/sys/compat/linux/arch/powerpc/linux_ptrace.c

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



CVS commit: [netbsd-7] src/sys/dev

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 12:04:46 UTC 2014

Modified Files:
src/sys/dev/ieee1394 [netbsd-7]: fwcrom.c
src/sys/dev/marvell [netbsd-7]: if_gfe.c
src/sys/dev/pci [netbsd-7]: twa.c
src/sys/dev/pci/cxgb [netbsd-7]: cxgb_offload.c
src/sys/dev/usb [netbsd-7]: stuirda.c

Log Message:
Pull up following revision(s) (requested by maxv in ticket #164):
sys/dev/ieee1394/fwcrom.c: revision 1.15
sys/dev/ieee1394/fwcrom.c: revision 1.16
sys/dev/marvell/if_gfe.c: revision 1.43
sys/dev/usb/stuirda.c: revision 1.16
sys/dev/pci/cxgb/cxgb_offload.c: revision 1.4
sys/dev/pci/twa.c: revision 1.51
sys/dev/pci/twa.c: revision 1.52
Various fixes in dev/: remove dead code and fix two inconsistencies.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.14.4.1 src/sys/dev/ieee1394/fwcrom.c
cvs rdiff -u -r1.42 -r1.42.2.1 src/sys/dev/marvell/if_gfe.c
cvs rdiff -u -r1.50 -r1.50.2.1 src/sys/dev/pci/twa.c
cvs rdiff -u -r1.3 -r1.3.4.1 src/sys/dev/pci/cxgb/cxgb_offload.c
cvs rdiff -u -r1.15 -r1.15.14.1 src/sys/dev/usb/stuirda.c

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



CVS commit: [netbsd-7] src/sys/arch

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 12:14:37 UTC 2014

Modified Files:
src/sys/arch/amiga/amiga [netbsd-7]: disksubr.c
src/sys/arch/amiga/dev [netbsd-7]: siop.c siop2.c
src/sys/arch/arm/arm32 [netbsd-7]: pmap.c
src/sys/arch/mvme68k/stand/installboot [netbsd-7]: installboot.c
src/sys/arch/news68k/news68k [netbsd-7]: bus_space.c
src/sys/arch/newsmips/stand/boot [netbsd-7]: netif_news.c
src/sys/arch/x86/x86 [netbsd-7]: x86_autoconf.c

Log Message:
Pull up following revision(s) (requested by maxv in ticket #165):
sys/arch/newsmips/stand/boot/netif_news.c: revision 1.9
sys/arch/mvme68k/stand/installboot/installboot.c: revision 1.19
sys/arch/arm/arm32/pmap.c: revision 1.300
sys/arch/amiga/dev/siop2.c: revision 1.43
sys/arch/amiga/amiga/disksubr.c: revision 1.62
sys/arch/news68k/news68k/bus_space.c: revision 1.13
sys/arch/amiga/dev/siop.c: revision 1.69
sys/arch/x86/x86/x86_autoconf.c: revision 1.72
Remove dead code in various places under arch/.


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.61.4.1 src/sys/arch/amiga/amiga/disksubr.c
cvs rdiff -u -r1.68 -r1.68.4.1 src/sys/arch/amiga/dev/siop.c
cvs rdiff -u -r1.42 -r1.42.4.1 src/sys/arch/amiga/dev/siop2.c
cvs rdiff -u -r1.295 -r1.295.2.1 src/sys/arch/arm/arm32/pmap.c
cvs rdiff -u -r1.18 -r1.18.8.1 \
src/sys/arch/mvme68k/stand/installboot/installboot.c
cvs rdiff -u -r1.12 -r1.12.4.1 src/sys/arch/news68k/news68k/bus_space.c
cvs rdiff -u -r1.8 -r1.8.38.1 src/sys/arch/newsmips/stand/boot/netif_news.c
cvs rdiff -u -r1.71 -r1.71.2.1 src/sys/arch/x86/x86/x86_autoconf.c

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



CVS commit: [netbsd-7] src/sys/compat/netbsd32

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 12:18:56 UTC 2014

Modified Files:
src/sys/compat/netbsd32 [netbsd-7]: netbsd32_compat_50.c

Log Message:
Pull up following revision(s) (requested by maxv in ticket #166):
sys/compat/netbsd32/netbsd32_compat_50.c: revision 1.28
fix multiple mistakes:
- error from copyout was ignored
- the wrong size was specified in copyin
- missing locking.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.24.2.1 src/sys/compat/netbsd32/netbsd32_compat_50.c

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



CVS commit: [netbsd-7] src/sys/arch/m68k/m68k

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 12:30:24 UTC 2014

Modified Files:
src/sys/arch/m68k/m68k [netbsd-7]: db_disasm.c

Log Message:
Pull up following revision(s) (requested by maxv in ticket #167):
sys/arch/m68k/m68k/db_disasm.c: revision 1.41
fix cut-n-paste


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.40.4.1 src/sys/arch/m68k/m68k/db_disasm.c

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



CVS commit: [netbsd-7] src/sys/arch/sparc64/sparc64

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 12:33:18 UTC 2014

Modified Files:
src/sys/arch/sparc64/sparc64 [netbsd-7]: machdep.c

Log Message:
Pull up following revision(s) (requested by nakayama in ticket #168):
sys/arch/sparc64/sparc64/machdep.c: revision 1.280
Sync cpu_reboot with i386:
- avoid sync and unmount after panic.
- remove vfs_shutdown, we call vfs_sync_all and vfs_unmount* instead.
- resurrect doshutdownhooks since some drivers still use it (eg. sab(4)).


To generate a diff of this commit:
cvs rdiff -u -r1.278 -r1.278.2.1 src/sys/arch/sparc64/sparc64/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] src/sys/arch/evbarm/imx23_olinuxino

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 12:35:21 UTC 2014

Modified Files:
src/sys/arch/evbarm/imx23_olinuxino [netbsd-7]:
imx23_olinuxino_machdep.c

Log Message:
Pull up following revision(s) (requested by skrll in ticket #169):
sys/arch/evbarm/imx23_olinuxino/imx23_olinuxino_machdep.c: revision 1.4
PR/48669 evbarm/imx23_olinuxino (ARM9E) doesn't boot.
Don't try to map all memory and fix booting.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.3.4.1 \
src/sys/arch/evbarm/imx23_olinuxino/imx23_olinuxino_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] src/lib/libperfuse

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 12:38:15 UTC 2014

Modified Files:
src/lib/libperfuse [netbsd-7]: ops.c

Log Message:
Pull up following revision(s) (requested by manu in ticket #170):
lib/libperfuse/ops.c: revision 1.77
Fix invalid free in deletextattr FUSE handler
Do not free FUSE message on error as it was not allocated.


To generate a diff of this commit:
cvs rdiff -u -r1.66.2.8 -r1.66.2.9 src/lib/libperfuse/ops.c

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



CVS commit: [netbsd-7] src/doc

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 12:40:36 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Tickets #163 - #170


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.70 -r1.1.2.71 src/doc/CHANGES-7.0

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



CVS commit: [netbsd-7] src/sys/arch/x86/x86

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 18:58:45 UTC 2014

Modified Files:
src/sys/arch/x86/x86 [netbsd-7]: identcpu.c

Log Message:
Pull up following revision(s) (requested by riz in ticket #171):
sys/arch/x86/x86/identcpu.c: revision 1.46
sys/arch/x86/x86/identcpu.c: revision 1.47
Force x86_xsave_features to 0 when running under XEN.
This prevents the use of xsave and xrstor thus fixing
the problem in PR/49150.  The basic problem is that the way AMD
implements those instructions means that information can leak
between domains so XEN treats them as privileged.


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.45.2.1 src/sys/arch/x86/x86/identcpu.c

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



CVS commit: [netbsd-7] src/doc

2014-10-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Oct 30 19:00:12 UTC 2014

Modified Files:
src/doc [netbsd-7]: CHANGES-7.0

Log Message:
Ticket #171


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.71 -r1.1.2.72 src/doc/CHANGES-7.0

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



CVS commit: [netbsd-7] src/usr.bin/ftp

2014-10-31 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Fri Oct 31 08:30:06 UTC 2014

Modified Files:
src/usr.bin/ftp [netbsd-7]: version.h

Log Message:
Pull up following revision(s) (requested by lukem in ticket #172):
usr.bin/ftp/version.h: revision 1.85
Version 20141026
Ignore special characters unless they're from the command line.
Fixes CVE-2014-8517


To generate a diff of this commit:
cvs rdiff -u -r1.84 -r1.84.6.1 src/usr.bin/ftp/version.h

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



  1   2   3   4   5   6   7   8   9   10   >