svn commit: r273121 - head/sys/conf

2014-10-15 Thread Andrey V. Elsukov
Author: ae Date: Wed Oct 15 06:10:33 2014 New Revision: 273121 URL: https://svnweb.freebsd.org/changeset/base/273121 Log: Add inet/inet6 to the dependency list. Without them if_gif is useless. MFC after:1 month Modified: head/sys/conf/files Modified: head/sys/conf/files

svn commit: r273122 - releng/10.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2014-10-15 Thread Marcelo Araujo
Author: araujo (ports committer) Date: Wed Oct 15 06:31:08 2014 New Revision: 273122 URL: https://svnweb.freebsd.org/changeset/base/273122 Log: Make external NFS clients know when files have their attributes changed and avoid cache the file's state indefinitely. The va_filerev is what is sent

svn commit: r273123 - head/usr.sbin/autofs

2014-10-15 Thread Edward Tomasz Napierala
Author: trasz Date: Wed Oct 15 07:09:45 2014 New Revision: 273123 URL: https://svnweb.freebsd.org/changeset/base/273123 Log: Silence down a warning that doesn't provide any useful information unless debug is enabled. MFC after:1 month Sponsored by: The FreeBSD Foundation Modified:

svn commit: r273124 - head/lib/libfetch

2014-10-15 Thread Dag-Erling Smørgrav
Author: des Date: Wed Oct 15 07:35:50 2014 New Revision: 273124 URL: https://svnweb.freebsd.org/changeset/base/273124 Log: As pointed out by several people, r273114 was incorrect: it unconditionally disabled everything except TLS 1.0. Replace it with a more carefully wrought patch: -

svn commit: r273125 - stable/10/sys/dev/mpr

2014-10-15 Thread Alexander Motin
Author: mav Date: Wed Oct 15 08:03:12 2014 New Revision: 273125 URL: https://svnweb.freebsd.org/changeset/base/273125 Log: MFC r272756: Properly report 12Gbps connection rate. Reviewed by: kadesai, slm Modified: stable/10/sys/dev/mpr/mpr_sas.c stable/10/sys/dev/mpr/mpr_table.c

svn commit: r273126 - stable/9/sys/dev/mpr

2014-10-15 Thread Alexander Motin
Author: mav Date: Wed Oct 15 08:04:43 2014 New Revision: 273126 URL: https://svnweb.freebsd.org/changeset/base/273126 Log: MFC r272756: Properly report 12Gbps connection rate. Reviewed by: kadesai, slm Modified: stable/9/sys/dev/mpr/mpr_sas.c stable/9/sys/dev/mpr/mpr_table.c

Re: svn commit: r272906 - in head/sys: conf libkern netpfil/pf sys

2014-10-15 Thread Dag-Erling Smørgrav
Ed Maste ema...@freebsd.org writes: murmur3's size argument is bytes, not uint32_ts, so the test is only hashing the first 1/4 of the keys. That's my fault, and I'm going to change it, because it's illogical. The function works on aligned arrays of int32s and should take a count, not a size. I

svn commit: r273127 - in head: sys/fs/autofs usr.sbin/autofs

2014-10-15 Thread Edward Tomasz Napierala
Author: trasz Date: Wed Oct 15 09:28:45 2014 New Revision: 273127 URL: https://svnweb.freebsd.org/changeset/base/273127 Log: Make automountd(8) inform autofs(4) whether directory being handled can have wildcards. This makes it possible for autofs(4) to avoid requesting automountd(8) action

Re: svn commit: r270122 - in stable/10: . lib/libopie

2014-10-15 Thread Mathieu Arnold
+--On 11 octobre 2014 00:02:01 +0900 Hiroki Sato h...@freebsd.org wrote: | Andrey Chernov a...@freebsd.org wrote | in 5437f373.1090...@freebsd.org: | | ac On 10.10.2014 18:47, Baptiste Daroussin wrote: | ac On Mon, Aug 18, 2014 at 02:42:23AM +, Andrey A. Chernov wrote: | ac Author: ache |

svn commit: r273129 - head/sys/kern

2014-10-15 Thread Konstantin Belousov
Author: kib Date: Wed Oct 15 12:38:26 2014 New Revision: 273129 URL: https://svnweb.freebsd.org/changeset/base/273129 Log: Implement FIODTYPE for master ptys. Requested and reviewed by:bde Sponsored by: The FreeBSD Foundation MFC after:1 week Modified:

svn commit: r273130 - head/sys/fs/deadfs

2014-10-15 Thread Konstantin Belousov
Author: kib Date: Wed Oct 15 13:08:53 2014 New Revision: 273130 URL: https://svnweb.freebsd.org/changeset/base/273130 Log: Change the deadfs poll VOP to return POLLIN|POLLRDNORM if the caller is interested in i/o state. Return POLLNVAL for invalid bits, similar to poll_no_poll(). Note

Re: svn commit: r272906 - in head/sys: conf libkern netpfil/pf sys

2014-10-15 Thread Ed Maste
On 15 October 2014 05:21, Dag-Erling Smørgrav d...@des.no wrote: That's my fault, and I'm going to change it, because it's illogical. The function works on aligned arrays of int32s and should take a count, not a size. I just didn't want to delay the patch even further. The fact that it works

Re: svn commit: r270122 - in stable/10: . lib/libopie

2014-10-15 Thread Andrey Chernov
On 15.10.2014 14:59, Mathieu Arnold wrote: | cyrus-sasl uses it. And that is just wha't in the ports tree, companies can have applications with security features that link with libopie and that will be broken when they update from 10.0 to 10.1 because the version they had is gone. I CCed

svn commit: r273131 - in head/sys: fs/deadfs fs/devfs sys

2014-10-15 Thread Konstantin Belousov
Author: kib Date: Wed Oct 15 13:16:51 2014 New Revision: 273131 URL: https://svnweb.freebsd.org/changeset/base/273131 Log: When vnode bypass cannot be performed on the cdev file descriptor for read/write/poll/ioctl, call standard vnode filedescriptor fop. This restores the special handling

svn commit: r273132 - head/sys/fs/deadfs

2014-10-15 Thread Konstantin Belousov
Author: kib Date: Wed Oct 15 13:22:33 2014 New Revision: 273132 URL: https://svnweb.freebsd.org/changeset/base/273132 Log: Style changes for deadfs: - ANSIfy VOPs. - Remove trivial comments. - Remove ARGSUSED. - Remove copies of the vop_XXX_args structure definitions in comments.

svn commit: r273133 - stable/10/lib/libthr/thread

2014-10-15 Thread Konstantin Belousov
Author: kib Date: Wed Oct 15 13:36:01 2014 New Revision: 273133 URL: https://svnweb.freebsd.org/changeset/base/273133 Log: MFC r272069: Switch the defaults to not split the RLIMIT_STACK-sized initial thread stack into the stacks of the created threads. Add knob LIBPTHREAD_SPLITSTACK_MAIN

svn commit: r273134 - stable/10/lib/libthr

2014-10-15 Thread Konstantin Belousov
Author: kib Date: Wed Oct 15 13:39:00 2014 New Revision: 273134 URL: https://svnweb.freebsd.org/changeset/base/273134 Log: MFC r272070: Expand the libthr(3) manpage to document knobs accepted by libthr.so and explain some internal working of the library, neccessary to understand the knobs

svn commit: r273135 - in head/sys: contrib/rdma/krping dev/cxgbe/iw_cxgbe ofed/drivers/infiniband/core ofed/drivers/infiniband/hw/mlx4 ofed/drivers/infiniband/hw/mthca ofed/drivers/infiniband/ulp/i...

2014-10-15 Thread Hans Petter Selasky
Author: hselasky Date: Wed Oct 15 13:40:29 2014 New Revision: 273135 URL: https://svnweb.freebsd.org/changeset/base/273135 Log: Update the OFED Linux compatibility layer and Mellanox hardware driver(s): - Properly name an inclusion guard - Fix compile warnings regarding unsigned enums

svn commit: r273136 - in stable/10/sys: amd64/amd64 amd64/include dev/drm2/i915 i386/i386 i386/include i386/xen

2014-10-15 Thread Konstantin Belousov
Author: kib Date: Wed Oct 15 14:07:24 2014 New Revision: 273136 URL: https://svnweb.freebsd.org/changeset/base/273136 Log: MFC r272761: Add an argument to the x86 pmap_invalidate_cache_range() to request forced invalidation of the cache range regardless of the presence of self-snoop

Re: svn commit: r272906 - in head/sys: conf libkern netpfil/pf sys

2014-10-15 Thread Dag-Erling Smørgrav
Ed Maste ema...@freebsd.org writes: Dag-Erling Smørgrav d...@des.no writes: That's my fault, and I'm going to change it, because it's illogical. The function works on aligned arrays of int32s and should take a count, not a size. I just didn't want to delay the patch even further. The fact

svn commit: r273137 - in releng/10.1/sys: kern sys

2014-10-15 Thread Mateusz Guzik
Author: mjg Date: Wed Oct 15 16:54:18 2014 New Revision: 273137 URL: https://svnweb.freebsd.org/changeset/base/273137 Log: MFC r273109: fget_unlocked currently reads 'fde' which is a structure consisting of serveral fields. In effect the read is inatomic and may result in obtaining

svn commit: r273138 - in vendor-crypto/openssl/dist: . apps crypto crypto/aes/asm crypto/asn1 crypto/bn crypto/bn/asm crypto/dsa crypto/ec crypto/evp crypto/md5/asm crypto/modes crypto/ocsp crypto/...

2014-10-15 Thread Jung-uk Kim
Author: jkim Date: Wed Oct 15 17:32:57 2014 New Revision: 273138 URL: https://svnweb.freebsd.org/changeset/base/273138 Log: Import OpenSSL 1.0.1j. Added: vendor-crypto/openssl/dist/crypto/constant_time_locl.h (contents, props changed)

svn commit: r273139 - vendor-crypto/openssl/1.0.1j

2014-10-15 Thread Jung-uk Kim
Author: jkim Date: Wed Oct 15 17:33:49 2014 New Revision: 273139 URL: https://svnweb.freebsd.org/changeset/base/273139 Log: Tag OpenSSL 1.0.1j. Added: vendor-crypto/openssl/1.0.1j/ - copied from r273138, vendor-crypto/openssl/dist/ ___

svn commit: r273140 - in vendor-crypto/openssl/dist-0.9.8: . apps crypto crypto/bn crypto/bn/asm crypto/ec crypto/err crypto/evp crypto/rsa doc/apps doc/ssl ssl test

2014-10-15 Thread Jung-uk Kim
Author: jkim Date: Wed Oct 15 17:35:39 2014 New Revision: 273140 URL: https://svnweb.freebsd.org/changeset/base/273140 Log: Import OpenSSL 0.9.8zc. Added: vendor-crypto/openssl/dist-0.9.8/crypto/constant_time_locl.h (contents, props changed)

svn commit: r273141 - vendor-crypto/openssl/0.9.8zc

2014-10-15 Thread Jung-uk Kim
Author: jkim Date: Wed Oct 15 17:36:30 2014 New Revision: 273141 URL: https://svnweb.freebsd.org/changeset/base/273141 Log: Tag OpenSSL 0.9.8zc. Added: vendor-crypto/openssl/0.9.8zc/ - copied from r273140, vendor-crypto/openssl/dist-0.9.8/ ___

svn commit: r273142 - head/sys/boot/i386/gptzfsboot

2014-10-15 Thread Jens Schweikhardt
Author: schweikh Date: Wed Oct 15 17:55:10 2014 New Revision: 273142 URL: https://svnweb.freebsd.org/changeset/base/273142 Log: Correct grammos. MFC after:3 weeks Modified: head/sys/boot/i386/gptzfsboot/gptzfsboot.8 Modified: head/sys/boot/i386/gptzfsboot/gptzfsboot.8

svn commit: r273143 - head/sys/kern

2014-10-15 Thread Alexander Motin
Author: mav Date: Wed Oct 15 18:36:34 2014 New Revision: 273143 URL: https://svnweb.freebsd.org/changeset/base/273143 Log: Remove setting BIO_DONE flag for BIOs that have done() method. This fixes use-after-free, caused by geom_disk, completing same BIO twice to save extra allocation,

Re: svn commit: r273143 - head/sys/kern

2014-10-15 Thread NGie Cooper
On Wed, Oct 15, 2014 at 11:36 AM, Alexander Motin m...@freebsd.org wrote: Author: mav Date: Wed Oct 15 18:36:34 2014 New Revision: 273143 URL: https://svnweb.freebsd.org/changeset/base/273143 Log: Remove setting BIO_DONE flag for BIOs that have done() method. This fixes

Re: svn commit: r273143 - head/sys/kern

2014-10-15 Thread Alexander Motin
On 15.10.2014 21:48, NGie Cooper wrote: On Wed, Oct 15, 2014 at 11:36 AM, Alexander Motin m...@freebsd.org wrote: Author: mav Date: Wed Oct 15 18:36:34 2014 New Revision: 273143 URL: https://svnweb.freebsd.org/changeset/base/273143 Log: Remove setting BIO_DONE flag for BIOs that have

svn commit: r273144 - in head: . crypto/openssl crypto/openssl/apps crypto/openssl/crypto crypto/openssl/crypto/aes/asm crypto/openssl/crypto/asn1 crypto/openssl/crypto/bn crypto/openssl/crypto/bn/...

2014-10-15 Thread Jung-uk Kim
18:36:34 2014(r273143) +++ head/ObsoleteFiles.inc Wed Oct 15 19:12:05 2014(r273144) @@ -38,6 +38,8 @@ # xargs -n1 | sort | uniq -d; # done +# 20141015: OpenSSL 1.0.1j import +OLD_FILES+=usr/share/openssl/man/man3/CMS_sign_add1_signer.3.gz # 20140922

svn commit: r273145 - stable/10/lib/libgeom

2014-10-15 Thread John Baldwin
Author: jhb Date: Wed Oct 15 19:27:14 2014 New Revision: 273145 URL: https://svnweb.freebsd.org/changeset/base/273145 Log: MFC 271721: Explicitly specify MAP_SHARED when mapping the stats file descriptor. Modified: stable/10/lib/libgeom/geom_stats.c Directory Properties: stable/10/

svn commit: r273146 - head/secure/usr.bin/openssl/man

2014-10-15 Thread Jung-uk Kim
Author: jkim Date: Wed Oct 15 19:29:22 2014 New Revision: 273146 URL: https://svnweb.freebsd.org/changeset/base/273146 Log: Merge OpenSSL 1.0.1j. Relnotes: yes Added: head/secure/usr.bin/openssl/man/c_rehash.1 (contents, props changed) Added:

Re: svn commit: r273143 - head/sys/kern

2014-10-15 Thread NGie Cooper
On Wed, Oct 15, 2014 at 12:09 PM, Alexander Motin m...@freebsd.org wrote: On 15.10.2014 21:48, NGie Cooper wrote: On Wed, Oct 15, 2014 at 11:36 AM, Alexander Motin m...@freebsd.org wrote: Author: mav Date: Wed Oct 15 18:36:34 2014 New Revision: 273143 URL:

Re: svn commit: r273146 - head/secure/usr.bin/openssl/man

2014-10-15 Thread Jung-uk Kim
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2014-10-15 15:29:23 -0400, Jung-uk Kim wrote: Author: jkim Date: Wed Oct 15 19:29:22 2014 New Revision: 273146 URL: https://svnweb.freebsd.org/changeset/base/273146 Log: Merge OpenSSL 1.0.1j. Relnotes: yes Added:

svn commit: r273147 - stable/9/sys/vm

2014-10-15 Thread Jung-uk Kim
Author: jkim Date: Wed Oct 15 19:41:51 2014 New Revision: 273147 URL: https://svnweb.freebsd.org/changeset/base/273147 Log: Properly cast nswbuf to long. Note this is a direct commit to stable/9 because head was fixed with vmem(9) commit (r252330). Reported by: John Hood (jhood at

svn commit: r273148 - stable/9/sys/kern

2014-10-15 Thread Jung-uk Kim
Author: jkim Date: Wed Oct 15 19:46:49 2014 New Revision: 273148 URL: https://svnweb.freebsd.org/changeset/base/273148 Log: Make kern.nswbuf tunable from loader. Modified: stable/9/sys/kern/vfs_bio.c Directory Properties: stable/9/sys/ (props changed) Modified:

Re: svn commit: r273148 - stable/9/sys/kern

2014-10-15 Thread Jung-uk Kim
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2014-10-15 15:46:50 -0400, Jung-uk Kim wrote: Author: jkim Date: Wed Oct 15 19:46:49 2014 New Revision: 273148 URL: https://svnweb.freebsd.org/changeset/base/273148 Log: Make kern.nswbuf tunable from loader. Modified:

svn commit: r273149 - in stable/10: . crypto/openssl crypto/openssl/apps crypto/openssl/crypto crypto/openssl/crypto/aes/asm crypto/openssl/crypto/asn1 crypto/openssl/crypto/bn crypto/openssl/crypt...

2014-10-15 Thread Jung-uk Kim
(r273149) @@ -38,6 +38,8 @@ # xargs -n1 | sort | uniq -d; # done +# 20141015: OpenSSL 1.0.1j import +OLD_FILES+=usr/share/openssl/man/man3/CMS_sign_add1_signer.3.gz # 20140917: hv_kvpd rc.d script removed in favor of devd configuration OLD_FILES+=etc/rc.d/hv_kvpd # 20140814: libopie version bump

svn commit: r273150 - stable/10/sys/kern

2014-10-15 Thread Jung-uk Kim
Author: jkim Date: Wed Oct 15 20:04:21 2014 New Revision: 273150 URL: https://svnweb.freebsd.org/changeset/base/273150 Log: MFC: r272718 Make kern.nswbuf tunable from loader. Modified: stable/10/sys/kern/vfs_bio.c Directory Properties: stable/10/ (props changed) Modified:

svn commit: r273151 - in stable: 8/crypto/openssl 8/crypto/openssl/apps 8/crypto/openssl/crypto 8/crypto/openssl/crypto/bn 8/crypto/openssl/crypto/bn/asm 8/crypto/openssl/crypto/ec 8/crypto/openssl...

2014-10-15 Thread Jung-uk Kim
Author: jkim Date: Wed Oct 15 20:28:31 2014 New Revision: 273151 URL: https://svnweb.freebsd.org/changeset/base/273151 Log: Merge OpenSSL 0.9.8zc. Added: stable/8/crypto/openssl/crypto/constant_time_locl.h - copied unchanged from r273140,

svn commit: r273151 - in stable: 8/crypto/openssl 8/crypto/openssl/apps 8/crypto/openssl/crypto 8/crypto/openssl/crypto/bn 8/crypto/openssl/crypto/bn/asm 8/crypto/openssl/crypto/ec 8/crypto/openssl...

2014-10-15 Thread Jung-uk Kim
Author: jkim Date: Wed Oct 15 20:28:31 2014 New Revision: 273151 URL: https://svnweb.freebsd.org/changeset/base/273151 Log: Merge OpenSSL 0.9.8zc. Added: stable/9/crypto/openssl/crypto/constant_time_locl.h - copied unchanged from r273140,

svn commit: r273152 - head/bin/sh

2014-10-15 Thread Jilles Tjoelker
Author: jilles Date: Wed Oct 15 21:20:56 2014 New Revision: 273152 URL: https://svnweb.freebsd.org/changeset/base/273152 Log: sh: Remove more gotos. Modified: head/bin/sh/expand.c head/bin/sh/jobs.c head/bin/sh/parser.c Modified: head/bin/sh/expand.c

svn commit: r273153 - head/bin/sh

2014-10-15 Thread Jilles Tjoelker
Author: jilles Date: Wed Oct 15 21:26:09 2014 New Revision: 273153 URL: https://svnweb.freebsd.org/changeset/base/273153 Log: sh: Make parseredir() a proper function instead of an emulated nested function. Modified: head/bin/sh/parser.c Modified: head/bin/sh/parser.c

svn commit: r273154 - head/lib/libc/sys

2014-10-15 Thread Gavin Atkinson
Author: gavin Date: Wed Oct 15 23:39:47 2014 New Revision: 273154 URL: https://svnweb.freebsd.org/changeset/base/273154 Log: Slightly improve grammar in EAGAIN description. PR: 176806 Submitted by: Jeremy Chadwick MFC after:3 days Modified: head/lib/libc/sys/recv.2

svn commit: r273155 - in head: etc/devd libexec share/mk

2014-10-15 Thread Warner Losh
Author: imp Date: Thu Oct 16 00:33:06 2014 New Revision: 273155 URL: https://svnweb.freebsd.org/changeset/base/273155 Log: HYPERV isn't available on all architectures, but just on by default for i386/amd64. Rather, it only works on i386/amd64 and should only be built there. Rather than

svn commit: r273156 - in head/sys: conf dev/iicbus powerpc/conf powerpc/powermac

2014-10-15 Thread Justin Hibbits
Author: jhibbits Date: Thu Oct 16 01:32:22 2014 New Revision: 273156 URL: https://svnweb.freebsd.org/changeset/base/273156 Log: Move the adm1030 driver to the proper location, and rename it. For compatibility, 'device windtunnel' is still supported, but one should use 'device adm1030'

svn commit: r273157 - head/sys/arm/arm

2014-10-15 Thread Rui Paulo
Author: rpaulo Date: Thu Oct 16 01:48:39 2014 New Revision: 273157 URL: https://svnweb.freebsd.org/changeset/base/273157 Log: Remove the Unable to unwind further message from DDB. The ARM version of DDB is supposedly reliable enough making this message benign. Modified:

svn commit: r273159 - head/sys/fs/nfsserver

2014-10-15 Thread Marcelo Araujo
Author: araujo (ports committer) Date: Thu Oct 16 02:24:19 2014 New Revision: 273159 URL: https://svnweb.freebsd.org/changeset/base/273159 Log: Add two sysctl(8) to enable/disable NFSv4 server to check when setting user nobody and/or setting group nogroup as owner of a file or directory.

svn commit: r273158 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2014-10-15 Thread Steven Hartland
Author: smh Date: Thu Oct 16 02:23:27 2014 New Revision: 273158 URL: https://svnweb.freebsd.org/changeset/base/273158 Log: Prevent ZFS leaking pool free space When processing async destroys ZFS would leak space every txg timeout (5 seconds by default), if no writes occurred, until the