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: src/lib/libc/stdio

2014-10-26 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 26 14:19:28 UTC 2014

Modified Files:
src/lib/libc/stdio: open_memstream.3

Log Message:
PR/49317: Henning Petersen: Fix prototypes inman page.


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

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-26 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Oct 26 15:07:33 UTC 2014

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

Log Message:
when enabling IRQ, compare channel type to the channel type, not the type 
(string) passed in from the caller -- unbreaks A10/A20 audio after awindma split


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/allwinner/awin_dma_a10.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/x86/x86

2014-10-26 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 26 15:38:28 UTC 2014

Modified Files:
src/sys/arch/x86/x86: syscall.c

Log Message:
dtrace expects a globally accessible syscall symbol.


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

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



CVS commit: src/usr.bin/ftp

2014-10-26 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 26 16:21:59 UTC 2014

Modified Files:
src/usr.bin/ftp: fetch.c

Log Message:
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.206 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/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

2014-10-26 Thread Thor Lancelot Simon
Module Name:src
Committed By:   tls
Date:   Sun Oct 26 18:22:32 UTC 2014

Modified Files:
src/doc: CHANGES
src/sys/dev: rndpseudo.c
src/sys/kern: kern_rndq.c kern_rndsink.c
src/sys/sys: rnd.h

Log Message:
Fixes and enhancements for polled entropy sources:
Add explicit enable/disable hooks for callout-driven sources (be more
power friendly).

Make "skew" source polled so it runs only when there is entropy
demand.

Adjust entropy collection from polled sources so it's processed
sooner.


To generate a diff of this commit:
cvs rdiff -u -r1.2003 -r1.2004 src/doc/CHANGES
cvs rdiff -u -r1.22 -r1.23 src/sys/dev/rndpseudo.c
cvs rdiff -u -r1.27 -r1.28 src/sys/kern/kern_rndq.c
cvs rdiff -u -r1.9 -r1.10 src/sys/kern/kern_rndsink.c
cvs rdiff -u -r1.42 -r1.43 src/sys/sys/rnd.h

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-26 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Oct 26 18:33:43 UTC 2014

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

Log Message:
- deal with MacOS/X not having clock_*()
- change multicast address
- set the interface
XXX: Now the ipv6 code works on MacOS/X but does not work for us still.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 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

2014-10-26 Thread Thor Lancelot Simon
Module Name:src
Committed By:   tls
Date:   Sun Oct 26 18:43:18 UTC 2014

Modified Files:
src/doc: CHANGES
src/sys/arch/amd64/conf: GENERIC
src/sys/dev/pci: files.pci
Added Files:
src/share/man/man4: viornd.4
src/sys/dev/pci: viornd.c

Log Message:
Add viornd(4), a driver for the VirtIO entropy source available on
QEMU, KVM, and Google Compute Engine.  From OpenBSD.


To generate a diff of this commit:
cvs rdiff -u -r1.2004 -r1.2005 src/doc/CHANGES
cvs rdiff -u -r0 -r1.1 src/share/man/man4/viornd.4
cvs rdiff -u -r1.400 -r1.401 src/sys/arch/amd64/conf/GENERIC
cvs rdiff -u -r1.371 -r1.372 src/sys/dev/pci/files.pci
cvs rdiff -u -r0 -r1.1 src/sys/dev/pci/viornd.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-26 Thread Thor Lancelot Simon
Module Name:src
Committed By:   tls
Date:   Sun Oct 26 18:48:09 UTC 2014

Modified Files:
src/distrib/sets/lists/man: mi
src/share/man/man4: Makefile

Log Message:
Build and install virtio(4) manual page - missed in previous commit.


To generate a diff of this commit:
cvs rdiff -u -r1.1487 -r1.1488 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.617 -r1.618 src/share/man/man4/Makefile

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



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

2014-10-26 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Oct 26 19:52:04 UTC 2014

Modified Files:
src/crypto/external/bsd/openssl/dist [netbsd-6-0]: CHANGES Configure
Makefile NEWS README e_os.h makevms.com openssl.spec
src/crypto/external/bsd/openssl/dist/apps [netbsd-6-0]: makeapps.com
s_client.c
src/crypto/external/bsd/openssl/dist/crypto [netbsd-6-0]: 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-6-0]:
aesni-x86_64.pl
src/crypto/external/bsd/openssl/dist/crypto/asn1 [netbsd-6-0]:
a_strex.c
src/crypto/external/bsd/openssl/dist/crypto/bn [netbsd-6-0]: bn_exp.c
bn_nist.c exptest.c
src/crypto/external/bsd/openssl/dist/crypto/bn/asm [netbsd-6-0]:
x86_64-gcc.c
src/crypto/external/bsd/openssl/dist/crypto/dsa [netbsd-6-0]:
dsa_ameth.c
src/crypto/external/bsd/openssl/dist/crypto/ec [netbsd-6-0]: 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-6-0]:
openssl.ec
src/crypto/external/bsd/openssl/dist/crypto/evp [netbsd-6-0]: Makefile
e_aes.c evp_enc.c
src/crypto/external/bsd/openssl/dist/crypto/md5/asm [netbsd-6-0]:
md5-x86_64.pl
src/crypto/external/bsd/openssl/dist/crypto/modes [netbsd-6-0]: modes.h
src/crypto/external/bsd/openssl/dist/crypto/ocsp [netbsd-6-0]:
ocsp_vfy.c
src/crypto/external/bsd/openssl/dist/crypto/pkcs7 [netbsd-6-0]: pkcs7.h
src/crypto/external/bsd/openssl/dist/crypto/pqueue [netbsd-6-0]:
pqueue.h
src/crypto/external/bsd/openssl/dist/crypto/rsa [netbsd-6-0]: Makefile
rsa.h rsa_err.c rsa_oaep.c rsa_pk1.c rsa_sign.c
src/crypto/external/bsd/openssl/dist/crypto/stack [netbsd-6-0]:
safestack.h
src/crypto/external/bsd/openssl/dist/doc/apps [netbsd-6-0]: dgst.pod
src/crypto/external/bsd/openssl/dist/doc/crypto [netbsd-6-0]:
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-6-0]:
SSL_CTX_set_tmp_dh_callback.pod
src/crypto/external/bsd/openssl/dist/engines [netbsd-6-0]:
makeengines.com
src/crypto/external/bsd/openssl/dist/ssl [netbsd-6-0]: 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-6-0]: Makefile
maketests.com tests.com testssl
src/crypto/external/bsd/openssl/dist/util [netbsd-6-0]: mk1mf.pl
mkdef.pl ssleay.num

Log Message:
Apply patch (requested by spz in ticket 1170):
update of openssl to the next higher version, 1.0.1j

Upstream condensed log:
  Major changes between OpenSSL 1.0.1i and OpenSSL 1.0.1j [15 Oct 2014]

  o Fix for CVE-2014-3513
  o Fix for CVE-2014-3567
  o Mitigation for CVE-2014-3566 (SSL protocol vulnerability)
  o Fix for CVE-2014-3568


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.4.4.1.4.3 -r1.1.1.4.4.1.4.4 \
src/crypto/external/bsd/openssl/dist/CHANGES
cvs rdiff -u -r1.2.4.1.4.2 -r1.2.4.1.4.3 \
src/crypto/external/bsd/openssl/dist/Configure
cvs rdiff -u -r1.1.1.1.2.2.4.3 -r1.1.1.1.2.2.4.4 \
src/crypto/external/bsd/openssl/dist/Makefile
cvs rdiff -u -r1.1.1.2.4.1.4.3 -r1.1.1.2.4.1.4.4 \
src/crypto/external/bsd/openssl/dist/NEWS
cvs rdiff -u -r1.1.1.3.4.1.4.3 -r1.1.1.3.4.1.4.4 \
src/crypto/external/bsd/openssl/dist/README \
src/crypto/external/bsd/openssl/dist/openssl.spec
cvs rdiff -u -r1.1.1.3.4.1.4.1 -r1.1.1.3.4.1.4.2 \
src/crypto/external/bsd/openssl/dist/e_os.h
cvs rdiff -u -r1.1.1.2.4.1 -r1.1.1.2.4.1.4.1 \
src/crypto/external/bsd/openssl/dist/makevms.com
cvs rdiff -u -r1.1.1.2 -r1.1.1.2.10.1 \
src/crypto/external/bsd/openssl/dist/apps/makeapps.com
cvs rdiff -u -r1.2.4.1.4.2 -r1.2.4.1.4.3 \
src/crypto/external/bsd/openssl/dist/apps/s_client.c
cvs rdiff -u -r1.1.1.2 -r1.1.1.2.10.1 \
src/crypto/external/bsd/openssl/dist/crypto/LPdir_vms.c
cvs rdiff -u -r1.1.1.1 -r1.1.1.1.14.1 \
src/crypto/external/bsd/openssl/dist/crypto/LPdir_win.c \
src/crypto/external/bsd/openssl/dist/crypto/ebcdic.h
cvs rdiff -u -r1.1.1.2.4.1.4.1 -r1.1.1.2.4.1.4.2 \
src/crypto/external/bsd/openssl/dist/crypto/Makefile
cvs rdiff -u -r1.1.1.3.4.1.4.1 -r1.1.1.3.4.1.4.2 \
src/crypto/external/bsd/openssl/dist/crypto/crypto-lib.com
cvs rdiff -u -r1.1.1.1 -r1.

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

2014-10-26 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Oct 26 19:54:53 UTC 2014

Added Files:
src/crypto/external/bsd/openssl/dist/crypto [netbsd-6-0]:
constant_time_locl.h

Log Message:
Apply patch (requested by spz in ticket 1170):
update of openssl to the next higher version, 1.0.1j

Upstream condensed log:
  Major changes between OpenSSL 1.0.1i and OpenSSL 1.0.1j [15 Oct 2014]

  o Fix for CVE-2014-3513
  o Fix for CVE-2014-3567
  o Mitigation for CVE-2014-3566 (SSL protocol vulnerability)
  o Fix for CVE-2014-3568


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1.4.2 \
src/crypto/external/bsd/openssl/dist/crypto/constant_time_locl.h

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



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

2014-10-26 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Oct 26 19:55:39 UTC 2014

Modified Files:
src/crypto/external/bsd/openssl/dist [netbsd-6-1]: CHANGES Configure
Makefile NEWS README e_os.h makevms.com openssl.spec
src/crypto/external/bsd/openssl/dist/apps [netbsd-6-1]: makeapps.com
s_client.c
src/crypto/external/bsd/openssl/dist/crypto [netbsd-6-1]: 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-6-1]:
aesni-x86_64.pl
src/crypto/external/bsd/openssl/dist/crypto/asn1 [netbsd-6-1]:
a_strex.c
src/crypto/external/bsd/openssl/dist/crypto/bn [netbsd-6-1]: bn_exp.c
bn_nist.c exptest.c
src/crypto/external/bsd/openssl/dist/crypto/bn/asm [netbsd-6-1]:
x86_64-gcc.c
src/crypto/external/bsd/openssl/dist/crypto/dsa [netbsd-6-1]:
dsa_ameth.c
src/crypto/external/bsd/openssl/dist/crypto/ec [netbsd-6-1]: 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-6-1]:
openssl.ec
src/crypto/external/bsd/openssl/dist/crypto/evp [netbsd-6-1]: Makefile
e_aes.c evp_enc.c
src/crypto/external/bsd/openssl/dist/crypto/md5/asm [netbsd-6-1]:
md5-x86_64.pl
src/crypto/external/bsd/openssl/dist/crypto/modes [netbsd-6-1]: modes.h
src/crypto/external/bsd/openssl/dist/crypto/ocsp [netbsd-6-1]:
ocsp_vfy.c
src/crypto/external/bsd/openssl/dist/crypto/pkcs7 [netbsd-6-1]: pkcs7.h
src/crypto/external/bsd/openssl/dist/crypto/pqueue [netbsd-6-1]:
pqueue.h
src/crypto/external/bsd/openssl/dist/crypto/rsa [netbsd-6-1]: Makefile
rsa.h rsa_err.c rsa_oaep.c rsa_pk1.c rsa_sign.c
src/crypto/external/bsd/openssl/dist/crypto/stack [netbsd-6-1]:
safestack.h
src/crypto/external/bsd/openssl/dist/doc/apps [netbsd-6-1]: dgst.pod
src/crypto/external/bsd/openssl/dist/doc/crypto [netbsd-6-1]:
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-6-1]:
SSL_CTX_set_tmp_dh_callback.pod
src/crypto/external/bsd/openssl/dist/engines [netbsd-6-1]:
makeengines.com
src/crypto/external/bsd/openssl/dist/ssl [netbsd-6-1]: 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-6-1]: Makefile
maketests.com tests.com testssl
src/crypto/external/bsd/openssl/dist/util [netbsd-6-1]: mk1mf.pl
mkdef.pl ssleay.num
Added Files:
src/crypto/external/bsd/openssl/dist/crypto [netbsd-6-1]:
constant_time_locl.h

Log Message:
Apply patch (requested by spz in ticket 1170):
update of openssl to the next higher version, 1.0.1j

Upstream condensed log:
  Major changes between OpenSSL 1.0.1i and OpenSSL 1.0.1j [15 Oct 2014]

  o Fix for CVE-2014-3513
  o Fix for CVE-2014-3567
  o Mitigation for CVE-2014-3566 (SSL protocol vulnerability)
  o Fix for CVE-2014-3568


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.4.4.1.6.3 -r1.1.1.4.4.1.6.4 \
src/crypto/external/bsd/openssl/dist/CHANGES
cvs rdiff -u -r1.2.4.1.6.2 -r1.2.4.1.6.3 \
src/crypto/external/bsd/openssl/dist/Configure
cvs rdiff -u -r1.1.1.1.2.2.6.3 -r1.1.1.1.2.2.6.4 \
src/crypto/external/bsd/openssl/dist/Makefile
cvs rdiff -u -r1.1.1.2.4.1.6.3 -r1.1.1.2.4.1.6.4 \
src/crypto/external/bsd/openssl/dist/NEWS
cvs rdiff -u -r1.1.1.3.4.1.6.3 -r1.1.1.3.4.1.6.4 \
src/crypto/external/bsd/openssl/dist/README \
src/crypto/external/bsd/openssl/dist/openssl.spec
cvs rdiff -u -r1.1.1.3.4.1.6.1 -r1.1.1.3.4.1.6.2 \
src/crypto/external/bsd/openssl/dist/e_os.h
cvs rdiff -u -r1.1.1.2.4.1 -r1.1.1.2.4.1.6.1 \
src/crypto/external/bsd/openssl/dist/makevms.com
cvs rdiff -u -r1.1.1.2 -r1.1.1.2.18.1 \
src/crypto/external/bsd/openssl/dist/apps/makeapps.com
cvs rdiff -u -r1.2.4.1.6.2 -r1.2.4.1.6.3 \
src/crypto/external/bsd/openssl/dist/apps/s_client.c
cvs rdiff -u -r1.1.1.2 -r1.1.1.2.18.1 \
src/crypto/external/bsd/openssl/dist/crypto/LPdir_vms.c
cvs rdiff -u -r1.1.1.1 -r1.1.1.1.22.1 \
src/crypto/external/bsd/openssl/dist/crypto/LPdir_win.c \
src/crypto/external/bsd/openssl/dist/crypto/ebcdic.h
cvs rdiff -u -r1.1.1.2.4.1.6.1 -r1.1.1.2.4.1.6.2 \
src/crypto/external/bsd/openssl/dist/crypto/Makefile
cvs rdiff -u -r0 -r1.1.6.2 \

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

2014-10-26 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Oct 26 19:56:21 UTC 2014

Modified Files:
src/crypto/external/bsd/openssl/dist [netbsd-6]: CHANGES Configure
Makefile NEWS README e_os.h makevms.com openssl.spec
src/crypto/external/bsd/openssl/dist/apps [netbsd-6]: makeapps.com
s_client.c
src/crypto/external/bsd/openssl/dist/crypto [netbsd-6]: 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-6]:
aesni-x86_64.pl
src/crypto/external/bsd/openssl/dist/crypto/asn1 [netbsd-6]: a_strex.c
src/crypto/external/bsd/openssl/dist/crypto/bn [netbsd-6]: bn_exp.c
bn_nist.c exptest.c
src/crypto/external/bsd/openssl/dist/crypto/bn/asm [netbsd-6]:
x86_64-gcc.c
src/crypto/external/bsd/openssl/dist/crypto/dsa [netbsd-6]: dsa_ameth.c
src/crypto/external/bsd/openssl/dist/crypto/ec [netbsd-6]: 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-6]: openssl.ec
src/crypto/external/bsd/openssl/dist/crypto/evp [netbsd-6]: Makefile
e_aes.c evp_enc.c
src/crypto/external/bsd/openssl/dist/crypto/md5/asm [netbsd-6]:
md5-x86_64.pl
src/crypto/external/bsd/openssl/dist/crypto/modes [netbsd-6]: modes.h
src/crypto/external/bsd/openssl/dist/crypto/ocsp [netbsd-6]: ocsp_vfy.c
src/crypto/external/bsd/openssl/dist/crypto/pkcs7 [netbsd-6]: pkcs7.h
src/crypto/external/bsd/openssl/dist/crypto/pqueue [netbsd-6]: pqueue.h
src/crypto/external/bsd/openssl/dist/crypto/rsa [netbsd-6]: Makefile
rsa.h rsa_err.c rsa_oaep.c rsa_pk1.c rsa_sign.c
src/crypto/external/bsd/openssl/dist/crypto/stack [netbsd-6]:
safestack.h
src/crypto/external/bsd/openssl/dist/doc/apps [netbsd-6]: dgst.pod
src/crypto/external/bsd/openssl/dist/doc/crypto [netbsd-6]:
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-6]:
SSL_CTX_set_tmp_dh_callback.pod
src/crypto/external/bsd/openssl/dist/engines [netbsd-6]:
makeengines.com
src/crypto/external/bsd/openssl/dist/ssl [netbsd-6]: 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-6]: Makefile
maketests.com tests.com testssl
src/crypto/external/bsd/openssl/dist/util [netbsd-6]: mk1mf.pl mkdef.pl
ssleay.num
Added Files:
src/crypto/external/bsd/openssl/dist/crypto [netbsd-6]:
constant_time_locl.h

Log Message:
Apply patch (requested by spz in ticket 1170):
update of openssl to the next higher version, 1.0.1j

Upstream condensed log:
  Major changes between OpenSSL 1.0.1i and OpenSSL 1.0.1j [15 Oct 2014]

  o Fix for CVE-2014-3513
  o Fix for CVE-2014-3567
  o Mitigation for CVE-2014-3566 (SSL protocol vulnerability)
  o Fix for CVE-2014-3568


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.4.4.4 -r1.1.1.4.4.5 \
src/crypto/external/bsd/openssl/dist/CHANGES
cvs rdiff -u -r1.2.4.3 -r1.2.4.4 \
src/crypto/external/bsd/openssl/dist/Configure
cvs rdiff -u -r1.1.1.1.2.5 -r1.1.1.1.2.6 \
src/crypto/external/bsd/openssl/dist/Makefile
cvs rdiff -u -r1.1.1.2.4.4 -r1.1.1.2.4.5 \
src/crypto/external/bsd/openssl/dist/NEWS
cvs rdiff -u -r1.1.1.3.4.4 -r1.1.1.3.4.5 \
src/crypto/external/bsd/openssl/dist/README \
src/crypto/external/bsd/openssl/dist/openssl.spec
cvs rdiff -u -r1.1.1.3.4.2 -r1.1.1.3.4.3 \
src/crypto/external/bsd/openssl/dist/e_os.h
cvs rdiff -u -r1.1.1.2.4.1 -r1.1.1.2.4.2 \
src/crypto/external/bsd/openssl/dist/makevms.com
cvs rdiff -u -r1.1.1.2 -r1.1.1.2.4.1 \
src/crypto/external/bsd/openssl/dist/apps/makeapps.com
cvs rdiff -u -r1.2.4.3 -r1.2.4.4 \
src/crypto/external/bsd/openssl/dist/apps/s_client.c
cvs rdiff -u -r1.1.1.2 -r1.1.1.2.4.1 \
src/crypto/external/bsd/openssl/dist/crypto/LPdir_vms.c
cvs rdiff -u -r1.1.1.1 -r1.1.1.1.8.1 \
src/crypto/external/bsd/openssl/dist/crypto/LPdir_win.c \
src/crypto/external/bsd/openssl/dist/crypto/ebcdic.h
cvs rdiff -u -r1.1.1.2.4.2 -r1.1.1.2.4.3 \
src/crypto/external/bsd/openssl/dist/crypto/Makefile
cvs rdiff -u -r0 -r1.1.8.2 \
src/crypto/external/bsd/openssl/dist/crypto/constant_time_locl.h
cvs rdiff -u -r1.1.1.3.4.2 -r1.1.1.3.4.3 \
src/crypto/external/bsd/openssl/dist/crypto/crypto-lib.com
cvs rdiff -u -r1.1.1

CVS commit: [netbsd-6-1] src/doc

2014-10-26 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Oct 26 19:59:46 UTC 2014

Modified Files:
src/doc [netbsd-6-1]: CHANGES-6.1.6

Log Message:
ticket 1170


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/doc/CHANGES-6.1.6

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



CVS commit: [netbsd-6] src/doc

2014-10-26 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Oct 26 20:00:16 UTC 2014

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
ticket 1170


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.136 -r1.1.2.137 src/doc/CHANGES-6.2

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



CVS commit: [netbsd-6-0] src/doc

2014-10-26 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Oct 26 19:59:35 UTC 2014

Modified Files:
src/doc [netbsd-6-0]: CHANGES-6.0.7

Log Message:
ticket 1170


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/doc/CHANGES-6.0.7

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 Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Sun Oct 26 20:51:54 UTC 2014

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

Log Message:
Typo


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

2014-10-26 Thread Palle Lyckegaard
Module Name:src
Committed By:   palle
Date:   Sun Oct 26 21:03:45 UTC 2014

Modified Files:
src/sys/arch/sparc64/sparc64: locore.s

Log Message:
sun4v: Create CLEANWIN0 and CLEANWIN1 macros for handling clean window traps on 
both sun4u and sun4u (based on the original code inlined in the sun4u trap 
table). Update trap tables accordingly for both sun4u and sun4v. Ok martin@


To generate a diff of this commit:
cvs rdiff -u -r1.376 -r1.377 src/sys/arch/sparc64/sparc64/locore.s

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



CVS commit: src/share/man/man4

2014-10-26 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Sun Oct 26 22:07:48 UTC 2014

Modified Files:
src/share/man/man4: viornd.4

Log Message:
Use proper markup in AUTHORS, and sort SEE ALSO.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/share/man/man4/viornd.4

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



CVS commit: [netbsd-6] src/sys/arch/i386/conf

2014-10-26 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Oct 27 05:37:28 UTC 2014

Modified Files:
src/sys/arch/i386/conf [netbsd-6]: ALL

Log Message:
Pull up following revision(s) (requested by riastradh in ticket #1128):
sys/arch/i386/conf/ALL: revision 1.372
Remove FFS_NO_SNAPSHOT from x86/ALL so we do compile the snapshot code.


To generate a diff of this commit:
cvs rdiff -u -r1.332.2.3 -r1.332.2.4 src/sys/arch/i386/conf/ALL

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



CVS commit: [netbsd-6] src/usr.sbin/acpitools/acpidump

2014-10-26 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Oct 27 05:39:54 UTC 2014

Modified Files:
src/usr.sbin/acpitools/acpidump [netbsd-6]: acpi.c

Log Message:
Pull up following revision(s) (requested by riastradh in ticket #1131):
usr.sbin/acpitools/acpidump/acpi.c: revision 1.9
Don't choke on an assertion for an RSDT with a null address entry.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.8.6.1 src/usr.sbin/acpitools/acpidump/acpi.c

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



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

2014-10-26 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Oct 27 05:41:21 UTC 2014

Modified Files:
src/sys/kern [netbsd-6]: subr_pcq.c

Log Message:
Pull up following revision(s) (requested by riastradh in ticket #1132):
sys/kern/subr_pcq.c: revision 1.7
__HAVE_ATOMIC_AS_MEMBAR is spelled with two leading underscores.
This underscores the need to replace this error-prone cpp API by
unconditionally defined {pre,post}atomic_membar_*.
This change should only remove unnecessary membar_producers on x86.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.6.2.1 src/sys/kern/subr_pcq.c

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



CVS commit: [netbsd-6] src/sys/uvm

2014-10-26 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Oct 27 05:42:43 UTC 2014

Modified Files:
src/sys/uvm [netbsd-6]: uvm_swap.c

Log Message:
Pull up following revision(s) (requested by riastradh in ticket #1133):
sys/uvm/uvm_swap.c: revision 1.163
Set bp->b_resid to bp->b_bcount on error in swstrategy as required.


To generate a diff of this commit:
cvs rdiff -u -r1.161.2.1 -r1.161.2.2 src/sys/uvm/uvm_swap.c

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



CVS commit: [netbsd-6] src/share/man/man9

2014-10-26 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Oct 27 05:43:51 UTC 2014

Added Files:
src/share/man/man9 [netbsd-6]: genfs_rename.9

Log Message:
Pull up following revision(s) (requested by riastradh in ticket #1134):
share/man/man9/genfs_rename.9: revision 1.1
First draft of a long-awaited man page for genfs_rename(9).


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.3.8.2 src/share/man/man9/genfs_rename.9

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



CVS commit: [netbsd-6] src/sys/miscfs/genfs

2014-10-26 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Oct 27 05:46:27 UTC 2014

Modified Files:
src/sys/miscfs/genfs [netbsd-6]: genfs.h

Log Message:
Pull up following revision(s) (requested by riastradh in ticket #1135):
sys/miscfs/genfs/genfs.h: revision 1.31
Fix (harmless) typo in struct genfs_rename_ops::gro_lookup prototype.


To generate a diff of this commit:
cvs rdiff -u -r1.28.18.1 -r1.28.18.2 src/sys/miscfs/genfs/genfs.h

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



CVS commit: [netbsd-6] src/share/man/man3

2014-10-26 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Oct 27 05:51:57 UTC 2014

Modified Files:
src/share/man/man3 [netbsd-6]: rbtree.3

Log Message:
Pull up following revision(s) (requested by riastradh in ticket #1136):
share/man/man3/rbtree.3: revision 1.8
Fix documentation of rbtree(3) iteration.
. Fix sense of rb_tree_iterate(rbt, NULL, ...).
. Document RB_TREE_MIN/RB_TREE_MAX to avoid relying on that sense.
. Document RB_TREE_FOREACH and RB_TREE_FOREACH_REVERSE to simplify
iteration.
Addresses PR lib/46034 and PR lib/47144.  It would have been nice to
make `x = NULL; while ((x = rb_tree_iterate(t, NULL, ...)) != NULL)'
DTRT to traverse t, but it's too much late for that now.
We probably ought to have an RB_TREE_FOREACH{,_REVERSE}_SAFE too.
ok christos


To generate a diff of this commit:
cvs rdiff -u -r1.5.6.1 -r1.5.6.2 src/share/man/man3/rbtree.3

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



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

2014-10-26 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Mon Oct 27 05:53:05 UTC 2014

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

Log Message:
Pull up following revision(s) (requested by christos in ticket #1175):
usr.bin/ftp/fetch.c: revision 1.206 via patch
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.195.2.1 -r1.195.2.2 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-6] src/share/man/man9

2014-10-26 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Oct 27 05:54:09 UTC 2014

Modified Files:
src/share/man/man9 [netbsd-6]: autoconf.9

Log Message:
Pull up following revision(s) (requested by riastradh in ticket #1137):
share/man/man9/autoconf.9: revision 1.30
Fix argument order for config_attach_loc in autoconf(9).


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.28.8.1 src/share/man/man9/autoconf.9

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



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

2014-10-26 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Mon Oct 27 05:57:54 UTC 2014

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

Log Message:
Pull up following revision(s) (requested by christos in ticket #1175):
usr.bin/ftp/fetch.c: revision 1.206 via patch
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.195 -r1.195.8.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-6-0] src/usr.bin/ftp

2014-10-26 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Mon Oct 27 05:57:31 UTC 2014

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

Log Message:
Pull up following revision(s) (requested by christos in ticket #1175):
usr.bin/ftp/fetch.c: revision 1.206 via patch
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.195 -r1.195.6.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-6] src/doc

2014-10-26 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Oct 27 05:58:51 UTC 2014

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Ticket 1128 and 1131-1137.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.137 -r1.1.2.138 src/doc/CHANGES-6.2

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



CVS commit: [netbsd-6] src/doc

2014-10-26 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Mon Oct 27 05:59:42 UTC 2014

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
1175


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.138 -r1.1.2.139 src/doc/CHANGES-6.2

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



CVS commit: [netbsd-6-0] src/doc

2014-10-26 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Mon Oct 27 06:00:32 UTC 2014

Modified Files:
src/doc [netbsd-6-0]: CHANGES-6.0.7

Log Message:
1175


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.3 -r1.1.2.4 src/doc/CHANGES-6.0.7

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



CVS commit: [netbsd-6-1] src/doc

2014-10-26 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Mon Oct 27 06:01:06 UTC 2014

Modified Files:
src/doc [netbsd-6-1]: CHANGES-6.1.6

Log Message:
1175


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.3 -r1.1.2.4 src/doc/CHANGES-6.1.6

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



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

2014-10-26 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Oct 27 06:23:37 UTC 2014

Modified Files:
src/distrib/sets/lists/comp [netbsd-6]: mi

Log Message:
Add genfs_rename for ticket 1134.


To generate a diff of this commit:
cvs rdiff -u -r1.1738.2.18 -r1.1738.2.19 src/distrib/sets/lists/comp/mi

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



CVS commit: [netbsd-6] src/doc

2014-10-26 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Mon Oct 27 06:25:19 UTC 2014

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Add distrib/sets/lists/comp/mi for ticket 1134.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.139 -r1.1.2.140 src/doc/CHANGES-6.2

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