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: -

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

2014-10-15 Thread Dag-Erling Smørgrav
Ed Maste 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 just didn't want

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

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: head/sys/kern/tty_pts.c

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 that

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 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 only on

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. Sp

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

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

2014-10-15 Thread Dag-Erling Smørgrav
Ed Maste writes: > Dag-Erling Smørgrav 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 that it works only on

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, and

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

2014-10-15 Thread NGie Cooper
On Wed, Oct 15, 2014 at 11:36 AM, Alexander Motin 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 use-after-free, caused

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 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(

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: 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: head/secure/usr.bin/openssl/man/c_reha

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

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

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: head/secure/

Has your website : mail-archive.com been penalized by Google ?

2014-10-15 Thread lori76557
Good Morning Bussiness Owner Has your website lost traffic or rankings in last few weeks ? If yes, then your website is a VICTIM to these NEW google algorithm updates. To correct this you need to hire a professioanl Search Engine Optimization company who understands these changes bet

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 Mod

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 chang

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' ins

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: head/sys/arm/

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 poo

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. Usu