svn commit: r339225 - head/sys/dev/e1000

2018-10-07 Thread Eric van Gyzen
Author: vangyzen Date: Mon Oct 8 01:28:46 2018 New Revision: 339225 URL: https://svnweb.freebsd.org/changeset/base/339225 Log: em/igb: Do not print link state messages These messages are totally redundant with the iflib messages. They're also not very useful, since they don't include

svn commit: r339224 - head/usr.bin/truss

2018-10-07 Thread Allan Jude
Author: allanjude Date: Sun Oct 7 19:50:44 2018 New Revision: 339224 URL: https://svnweb.freebsd.org/changeset/base/339224 Log: Teach truss how to display shm_open(2), shm_unlink(2) Submitted by: Thomas Munro Reviewed by: tuexen, kib Approved by: re (rgrimes) MFC after:2

svn commit: r339223 - in head/sys: amd64/conf arm64/conf i386/conf

2018-10-07 Thread Michael Tuexen
Author: tuexen Date: Sun Oct 7 15:54:13 2018 New Revision: 339223 URL: https://svnweb.freebsd.org/changeset/base/339223 Log: Address the warning regarding duplicate option 'GEOM_PART_GPT' when configuring kernels for i386, amd64, and arm64. The 'GEOM_PART_GPT' option was added to the

svn commit: r339222 - head/stand/lua

2018-10-07 Thread Kyle Evans
Author: kevans Date: Sun Oct 7 15:28:50 2018 New Revision: 339222 URL: https://svnweb.freebsd.org/changeset/base/339222 Log: lualoader: Honor boot_* variables at lua init For non-UEFI systems, boot.config(5) may have -s or -v specified for single-user and verbose boot respectively.

svn commit: r339221 - head/sys/netinet

2018-10-07 Thread Michael Tuexen
Author: tuexen Date: Sun Oct 7 15:13:47 2018 New Revision: 339221 URL: https://svnweb.freebsd.org/changeset/base/339221 Log: Avoid truncating unrecognised parameters when reporting them. This resulted in sending malformed packets. Approved by: re (kib@) MFC after:

Re: svn commit: r339218 - in head: . stand/defaults stand/lua

2018-10-07 Thread Mateusz Piotrowski
On Sun, 7 Oct 2018 01:53:43 + (UTC) Kyle Evans wrote: >Author: kevans >Date: Sun Oct 7 01:53:43 2018 >New Revision: 339218 >URL: https://svnweb.freebsd.org/changeset/base/339218 > >Log: > lualoader: Create a module blacklist, add DRM modules to it > > This is a step in the process of

svn commit: r339220 - head/sys/powerpc/conf

2018-10-07 Thread Michael Tuexen
Author: tuexen Date: Sun Oct 7 12:56:05 2018 New Revision: 339220 URL: https://svnweb.freebsd.org/changeset/base/339220 Log: Enable TCP Fast Open support for PPC platforms. Reviewed by: kbowling@, andreast@ Approved by: re (kib@) Differential Revision:

svn commit: r339219 - head/sys/netinet

2018-10-07 Thread Michael Tuexen
Author: tuexen Date: Sun Oct 7 11:26:15 2018 New Revision: 339219 URL: https://svnweb.freebsd.org/changeset/base/339219 Log: Ensure that the ips_localout counter is incremented for locally generated SCTP packets sent over IPv4. This make the behaviour consistent with IPv6. Reviewed