svn commit: r302191 - in head/sys/dev/bhnd: . bcma siba

2016-06-24 Thread Landon J. Fuller
Author: landonf Date: Sat Jun 25 04:36:30 2016 New Revision: 302191 URL: https://svnweb.freebsd.org/changeset/base/302191 Log: bhnd(4): Add devinfo allocation and child addition methods, modeled on pci_if. This allows bhnd(4) to manage per-device state (such as per-core pmu/clock refcou

svn commit: r302190 - in head/sys/mips: atheros broadcom conf sentry5

2016-06-24 Thread Landon J. Fuller
Author: landonf Date: Sat Jun 25 04:34:54 2016 New Revision: 302190 URL: https://svnweb.freebsd.org/changeset/base/302190 Log: Replace mips/sentry5 with mips/broadcom The delta between SENTRY5 and BCM was already small due to BCM being derived from SENTRY5; re-integrating the two avoids t

svn commit: r302189 - in head/sys: dev/bhnd dev/bhnd/cores/chipc mips/broadcom

2016-06-24 Thread Landon J. Fuller
Author: landonf Date: Sat Jun 25 04:33:00 2016 New Revision: 302189 URL: https://svnweb.freebsd.org/changeset/base/302189 Log: bhnd(4): Perform explicit chipc child enumeration. Replaces use of DEVICE_IDENTIFY with explicit enumeration of chipc child devices using the chipc capability str

svn commit: r302186 - head/sys/dev/urtwn

2016-06-24 Thread Andriy Voskoboinyk
Author: avos Date: Fri Jun 24 23:43:19 2016 New Revision: 302186 URL: https://svnweb.freebsd.org/changeset/base/302186 Log: urtwn: use m_get2() in Rx path. Replace m_getcl() with m_get2(); this fixes 'frame too long' messages for frames, which are longer than MCLBYTES (can be easily tri

svn commit: r302185 - head/release/doc/en_US.ISO8859-1/relnotes

2016-06-24 Thread Glen Barber
Author: gjb Date: Fri Jun 24 23:42:33 2016 New Revision: 302185 URL: https://svnweb.freebsd.org/changeset/base/302185 Log: Update the release notes following r302182. Approved by: re (implicit, relnotes) Sponsored by: The FreeBSD Foundation Modified: head/release/doc/en_US.ISO8859-1/r

svn commit: r302184 - head/release/tools

2016-06-24 Thread Colin Percival
Author: cperciva Date: Fri Jun 24 23:39:44 2016 New Revision: 302184 URL: https://svnweb.freebsd.org/changeset/base/302184 Log: Turn off MSI-X interrupt migration by default in EC2 instances; this works around a bug in older versions of Xen and unbreaks SR-IOV (aka. "EC2 Enhanced Networking"

svn commit: r302183 - head/sys/dev/urtwn

2016-06-24 Thread Andriy Voskoboinyk
Author: avos Date: Fri Jun 24 23:36:22 2016 New Revision: 302183 URL: https://svnweb.freebsd.org/changeset/base/302183 Log: urtwn: fix memory leak on device restart Free data buffers every time when device is stopped, not when it is detached; they are allocated at the initialization stage

svn commit: r302182 - in head: crypto/openssh secure/usr.sbin/sshd

2016-06-24 Thread Glen Barber
Author: gjb Date: Fri Jun 24 23:22:42 2016 New Revision: 302182 URL: https://svnweb.freebsd.org/changeset/base/302182 Log: Revert r301551, which added blacklistd(8) to sshd(8). This change has functional impact, and other concerns raised by the OpenSSH maintainer. Requested by: des

svn commit: r302181 - head/sys/x86/x86

2016-06-24 Thread John Baldwin
Author: jhb Date: Fri Jun 24 22:49:32 2016 New Revision: 302181 URL: https://svnweb.freebsd.org/changeset/base/302181 Log: Add a tunable to disable migration of MSI-X interrupts. The new 'machdep.disable_msix_migration' tunable can be set to 1 to disable migration of MSI-X interrupts.

svn commit: r302180 - in head: sys/sys tests/sys/sys

2016-06-24 Thread Alan Somers
Author: asomers Date: Fri Jun 24 21:44:46 2016 New Revision: 302180 URL: https://svnweb.freebsd.org/changeset/base/302180 Log: Fix bitstring allocation on 32-bit platforms sys/sys/bitstring.h Fix a rounding calculation that could undersize a bitstring on 32-bit platforms.

svn commit: r302179 - head/usr.bin/gcore

2016-06-24 Thread Mark Johnston
Author: markj Date: Fri Jun 24 20:21:32 2016 New Revision: 302179 URL: https://svnweb.freebsd.org/changeset/base/302179 Log: gcore: Forward pending signals when detaching from the target. Otherwise gcore's ptrace attach operation can race with delivery of a signal and cause it to be lost.

svn commit: r302178 - head/share/man/man5

2016-06-24 Thread Bryan Drewery
Author: bdrewery Date: Fri Jun 24 20:00:39 2016 New Revision: 302178 URL: https://svnweb.freebsd.org/changeset/base/302178 Log: Regenerate Approved by: re (implicit, r302177) Modified: head/share/man/man5/src.conf.5 Modified: head/share/man/man5/src.conf.5 =

svn commit: r302177 - head/share/mk

2016-06-24 Thread Bryan Drewery
Author: bdrewery Date: Fri Jun 24 19:55:59 2016 New Revision: 302177 URL: https://svnweb.freebsd.org/changeset/base/302177 Log: WITH_SYSTEM_COMPILER: Enable by default This improves buildworld, toolchain, kernel-toolchain, and universe targets. See r300354 or src.conf(5) for more details.

svn commit: r302176 - head/share/mk

2016-06-24 Thread Ed Maste
Author: emaste Date: Fri Jun 24 18:45:16 2016 New Revision: 302176 URL: https://svnweb.freebsd.org/changeset/base/302176 Log: bsd.prog.mk: add "/usr/lib" to list of base system directories kgzldr.o is installed into /usr/lib but using bsd.prog.mk. Add /usr/lib to the base system directory

svn commit: r302175 - in head: share/man/man9 sys/dev/pci

2016-06-24 Thread John Baldwin
Author: jhb Date: Fri Jun 24 17:26:42 2016 New Revision: 302175 URL: https://svnweb.freebsd.org/changeset/base/302175 Log: Add pci_get_max_payload() to fetch the PCI-express maximum payload size. Approved by: re (gjb) MFC after:2 weeks Sponsored by: Chelsio Communications Differe

svn commit: r302174 - head/sbin/sysctl

2016-06-24 Thread Alan Somers
Author: asomers Date: Fri Jun 24 14:58:37 2016 New Revision: 302174 URL: https://svnweb.freebsd.org/changeset/base/302174 Log: Fix "sysctl vm.vmtotal" output on machines with > 2TB virtual memory sbin/sysctl/sysctl.c Fix integer overflows in printf format strings PR:

svn commit: r302173 - head/sys/netpfil/pf

2016-06-24 Thread Bjoern A. Zeeb
Author: bz Date: Fri Jun 24 11:53:12 2016 New Revision: 302173 URL: https://svnweb.freebsd.org/changeset/base/302173 Log: The void isn't void. Unbreak sparc64 and powerpc builds. Approved by: re (gjb) Sponsored by: The FreeBSD Foundation MFC after:12 days Modified: head/sys

Re: svn commit: r301932 - head/sys/dev/cxgbe/tom

2016-06-24 Thread Bruce Evans
On Wed, 15 Jun 2016, John Baldwin wrote: On Wednesday, June 15, 2016 09:08:51 PM John Baldwin wrote: Author: jhb Date: Wed Jun 15 21:08:51 2016 New Revision: 301932 URL: https://svnweb.freebsd.org/changeset/base/301932 Log: Use sbused() instead of sbspace() to avoid signed issues. This des

svn commit: r302171 - head/lib/libusb

2016-06-24 Thread Hans Petter Selasky
Author: hselasky Date: Fri Jun 24 10:55:14 2016 New Revision: 302171 URL: https://svnweb.freebsd.org/changeset/base/302171 Log: Resolve issue with libusb C++ header file inclusion. Approved by: re (marius) PR: 210509 MFC after:1 week Modified: head/lib/libusb/libusb.h