svn commit: r323963 - head/contrib/one-true-awk

2017-09-23 Thread Warner Losh
Author: imp Date: Sun Sep 24 05:03:57 2017 New Revision: 323963 URL: https://svnweb.freebsd.org/changeset/base/323963 Log: Fix uninitialized variable echo | awk 'BEGIN {i=$1; print i}' prints a boatload of stack garbage. NUL terminate the memory returned from malloc to prevent it. Ob

svn commit: r323965 - head/contrib/one-true-awk

2017-09-23 Thread Warner Losh
Author: imp Date: Sun Sep 24 05:04:06 2017 New Revision: 323965 URL: https://svnweb.freebsd.org/changeset/base/323965 Log: Don't display empty error context. Context extraction didn't handle this case and showed uninitialized memory. Obtained from: OpenBSD lib.c 1.21 Sponsored by: Ne

svn commit: r323964 - head/contrib/one-true-awk

2017-09-23 Thread Warner Losh
Author: imp Date: Sun Sep 24 05:04:02 2017 New Revision: 323964 URL: https://svnweb.freebsd.org/changeset/base/323964 Log: Fix %c for floating values that become 0 when coerced to int. Obtained from: OpenBSD run.c 1.36 (From Jeremy Devenport) Sponsored by: Netflix Differential Revision:

svn commit: r323962 - head/sys/contrib/ipfilter/netinet

2017-09-23 Thread Cy Schubert
Author: cy Date: Sun Sep 24 03:33:26 2017 New Revision: 323962 URL: https://svnweb.freebsd.org/changeset/base/323962 Log: Fix typo from r323945. Reported by: Gary Jennejohn Point hat to: cy (me) Modified: head/sys/contrib/ipfilter/netinet/ip_nat.c Modified: head/sys/contrib/ipfilter

svn commit: r323961 - head/sys/dev/ti

2017-09-23 Thread Alan Cox
Author: alc Date: Sun Sep 24 02:50:59 2017 New Revision: 323961 URL: https://svnweb.freebsd.org/changeset/base/323961 Log: Since the page "frame" doesn't belong to a vm object, it can't be paged out. Since it can't be paged out, it is never actually enqueued in a paging queue. Nonetheless,

svn commit: r323960 - head/tests/sys/opencrypto

2017-09-23 Thread Ngie Cooper
Author: ngie Date: Sun Sep 24 00:14:48 2017 New Revision: 323960 URL: https://svnweb.freebsd.org/changeset/base/323960 Log: Convert some idioms over to py3k-compatible idioms - Import print_function from __future__ and use print(..) instead of `print ..`. - Use repr instead of backticks

Re: svn commit: r323942 - head/sys/net

2017-09-23 Thread Stephen Hurd
Bjoern A. Zeeb wrote: On 23 Sep 2017, at 6:32, Stephen Hurd wrote: Bjoern A. Zeeb wrote: On 23 Sep 2017, at 1:35, Stephen Hurd wrote: Author: shurd Date: Sat Sep 23 01:35:14 2017 New Revision: 323942 URL: https://svnweb.freebsd.org/changeset/base/323942 Log: Chain mbufs before passing to

Re: svn commit: r323942 - head/sys/net

2017-09-23 Thread Jonathan Looney
On Sat, Sep 23, 2017 at 4:37 AM, Bjoern A. Zeeb < bzeeb-li...@lists.zabbadoz.net> wrote: > > Then this makes no sense as we don’t do LRO if forwarding is enabled on > the machine; > https://svnweb.freebsd.org/base/head/sys/netinet/tcp_lro.c? > annotate=317390#l645 Yes, that is true. However, thi

svn commit: r323958 - head/share/misc

2017-09-23 Thread Fedor Uporov
Author: fsu Date: Sat Sep 23 19:49:12 2017 New Revision: 323958 URL: https://svnweb.freebsd.org/changeset/base/323958 Log: Add myself as src committer. Approved by:pfg (mentor) Modified: head/share/misc/committers-src.dot Modified: head/share/misc/committers-src.dot

Re: svn commit: r323952 - head/sys/boot/i386/libi386

2017-09-23 Thread Warner Losh
On Sat, Sep 23, 2017 at 9:50 AM, John Baldwin wrote: > On Saturday, September 23, 2017 12:44:42 PM Mariusz Zaborski wrote: > > Author: oshogbo > > Date: Sat Sep 23 12:44:42 2017 > > New Revision: 323952 > > URL: https://svnweb.freebsd.org/changeset/base/323952 > > > > Log: > > After the r317886

svn commit: r323956 - head/sys/kern

2017-09-23 Thread Conrad Meyer
Author: cem Date: Sat Sep 23 17:48:49 2017 New Revision: 323956 URL: https://svnweb.freebsd.org/changeset/base/323956 Log: ddb(4): Add 'show badstacks' command to show witness badstacks Add a DDB command that mirrors sysctl debug.witness.badstacks. Reapply r323935 after fixing trivial

svn commit: r323955 - head/sys/dev/bnxt

2017-09-23 Thread Stephen Hurd
Author: shurd Date: Sat Sep 23 16:59:37 2017 New Revision: 323955 URL: https://svnweb.freebsd.org/changeset/base/323955 Log: bnxt: Choose better HW LRO defaults for performance 1) Choose correct Firmware options for HW LRO for best performance 2) Delete TBD and other comments which are no

Re: svn commit: r323945 - head/sys/contrib/ipfilter/netinet

2017-09-23 Thread Cy Schubert
In message <20170923105628.73924...@ernst.home>, Gary Jennejohn writes: > On Sat, 23 Sep 2017 06:00:17 + (UTC) > Cy Schubert wrote: > > > Author: cy > > Date: Sat Sep 23 06:00:17 2017 > > New Revision: 323945 > > URL: https://svnweb.freebsd.org/changeset/base/323945 > > > > Log: > > Correc

svn commit: r323954 - head/sys/net

2017-09-23 Thread Stephen Hurd
Author: shurd Date: Sat Sep 23 16:46:30 2017 New Revision: 323954 URL: https://svnweb.freebsd.org/changeset/base/323954 Log: Have ifmp_ring_enqueue() abdicate instead of switch to a consumer Move TX out of the enqueue() path. As a result, we need to have ifmp_ring_check_drainage() pick up

Re: svn commit: r323952 - head/sys/boot/i386/libi386

2017-09-23 Thread John Baldwin
On Saturday, September 23, 2017 12:44:42 PM Mariusz Zaborski wrote: > Author: oshogbo > Date: Sat Sep 23 12:44:42 2017 > New Revision: 323952 > URL: https://svnweb.freebsd.org/changeset/base/323952 > > Log: > After the r317886 support for TFTP and NFS can be enable simultaneously. > > The c

svn commit: r323952 - head/sys/boot/i386/libi386

2017-09-23 Thread Mariusz Zaborski
Author: oshogbo Date: Sat Sep 23 12:44:42 2017 New Revision: 323952 URL: https://svnweb.freebsd.org/changeset/base/323952 Log: After the r317886 support for TFTP and NFS can be enable simultaneously. The cleanup of this distinction was done in the r318988, but this Makefile was omitted.

svn commit: r323951 - head/sys/kern

2017-09-23 Thread Ed Maste
Author: emaste Date: Sat Sep 23 12:35:46 2017 New Revision: 323951 URL: https://svnweb.freebsd.org/changeset/base/323951 Log: Revert r323935 as it broke the build subr_witness.c:2577:4: error: use of undeclared identifier 'req' req->oldidx = 0;

svn commit: r323950 - stable/11/share/man/man9

2017-09-23 Thread Mariusz Zaborski
Author: oshogbo Date: Sat Sep 23 12:32:11 2017 New Revision: 323950 URL: https://svnweb.freebsd.org/changeset/base/323950 Log: MFC r323655: Add missing links to the nv man page. Modified: stable/11/share/man/man9/Makefile Directory Properties: stable/11/ (props changed) Modified: st

svn commit: r323949 - stable/11/share/man/man9

2017-09-23 Thread Mariusz Zaborski
Author: oshogbo Date: Sat Sep 23 12:28:56 2017 New Revision: 323949 URL: https://svnweb.freebsd.org/changeset/base/323949 Log: MFC r323654: Fix names of the array functions in the nv man page. Submitted by: def@ Modified: stable/11/share/man/man9/nv.9 Directory Properties: stable/

Re: svn commit: r323945 - head/sys/contrib/ipfilter/netinet

2017-09-23 Thread Gary Jennejohn
On Sat, 23 Sep 2017 06:00:17 + (UTC) Cy Schubert wrote: > Author: cy > Date: Sat Sep 23 06:00:17 2017 > New Revision: 323945 > URL: https://svnweb.freebsd.org/changeset/base/323945 > > Log: > Correct two misspellings. Also align */. > > Modified: > head/sys/contrib/ipfilter/netinet/ip_n

Re: svn commit: r323942 - head/sys/net

2017-09-23 Thread Bjoern A. Zeeb
On 23 Sep 2017, at 6:32, Stephen Hurd wrote: Bjoern A. Zeeb wrote: On 23 Sep 2017, at 1:35, Stephen Hurd wrote: Author: shurd Date: Sat Sep 23 01:35:14 2017 New Revision: 323942 URL: https://svnweb.freebsd.org/changeset/base/323942 Log: Chain mbufs before passing to if_input() Build a

svn commit: r323946 - in head/sys/dev: mpr mps

2017-09-23 Thread Scott Long
Author: scottl Date: Sat Sep 23 08:26:42 2017 New Revision: 323946 URL: https://svnweb.freebsd.org/changeset/base/323946 Log: Garbage collect usued fields Sponsored by: Netflix Modified: head/sys/dev/mpr/mpr_sas.h head/sys/dev/mps/mps_sas.h Modified: head/sys/dev/mpr/mpr_sas.h ===