svn commit: r305465 - head/sys/dev/usb/wlan

2016-09-05 Thread Andriy Voskoboinyk
Author: avos Date: Tue Sep 6 06:40:59 2016 New Revision: 305465 URL: https://svnweb.freebsd.org/changeset/base/305465 Log: rum: fix frame length checks in Rx path. Split usbd_xfer_status() check: - Check xfer length: must be longer, than Rx descriptor size. - Check frame size: must be

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

2016-09-05 Thread Andriy Gapon
Author: avg Date: Tue Sep 6 06:09:12 2016 New Revision: 305456 URL: https://svnweb.freebsd.org/changeset/base/305456 Log: fix zfs pool creation accidentally broken by r305331 The upstream change introduced a new load state, SPA_LOAD_CREATE, and vdev_geom code needs to be aware of it.

svn commit: r305455 - head/sys/dev/hyperv/netvsc

2016-09-05 Thread Sepherosa Ziehau
Author: sephe Date: Tue Sep 6 04:37:53 2016 New Revision: 305455 URL: https://svnweb.freebsd.org/changeset/base/305455 Log: hyperv/hn: Avoid bit fields for LSOv2 setup. MFC after:1 week Sponsored by: Microsoft Differential Revision:https://reviews.freebsd.org/D7786 Modifie

svn commit: r305454 - head/sys/dev/hyperv/netvsc

2016-09-05 Thread Sepherosa Ziehau
Author: sephe Date: Tue Sep 6 03:31:31 2016 New Revision: 305454 URL: https://svnweb.freebsd.org/changeset/base/305454 Log: hyperv/hn: Fix VLAN tag setup for outgoing VLAN packets. MFC after:1 week Sponsored by: Microsoft Differential Revision:https://reviews.freebsd.org/D7

svn commit: r305453 - in head/sys: dev/hyperv/netvsc net

2016-09-05 Thread Sepherosa Ziehau
Author: sephe Date: Tue Sep 6 03:20:06 2016 New Revision: 305453 URL: https://svnweb.freebsd.org/changeset/base/305453 Log: hyperv/hn: Stringent RNDIS packet message length/offset check. While I'm here, use definition in net/rndis.h MFC after:1 week Sponsored by: Microsoft Dif

Re: svn commit: r305331 - in head/sys/cddl/contrib/opensolaris/uts/common: fs/zfs fs/zfs/sys sys/fs

2016-09-05 Thread Cy Schubert
In message , Andriy Gapon wri tes: > On 05/09/2016 23:47, Andriy Gapon wrote: > > Alexander, > > > > I belive that this commit accidentally breaks the following scenario: > > zpool create tank /dev/xxx > > zpool destroy tank > > zpool create tank /dev/xxx > > > > It seems that vdev_geom code is

svn commit: r305451 - head/contrib/netbsd-tests/lib/libc/rpc

2016-09-05 Thread Ngie Cooper
Author: ngie Date: Tue Sep 6 01:07:12 2016 New Revision: 305451 URL: https://svnweb.freebsd.org/changeset/base/305451 Log: Fix lib/libc/rpc test assumptions added in r305358 - Require root in the tcp/udp subtests (it's needed on FreeBSD when registering services). - Skip the tests if

svn commit: r305449 - head/lib/libc/tests/db

2016-09-05 Thread Ngie Cooper
Author: ngie Date: Tue Sep 6 00:51:25 2016 New Revision: 305449 URL: https://svnweb.freebsd.org/changeset/base/305449 Log: Install h_db to unbreak some of the lib/libc/db testcases after r305358 MFC after:59 days X-MFC with: r305358 Reported by: Jenkins, rodrigc Sponsored by

svn commit: r305445 - head/sys/dev/iscsi

2016-09-05 Thread Navdeep Parhar
Author: np Date: Mon Sep 5 23:12:24 2016 New Revision: 305445 URL: https://svnweb.freebsd.org/changeset/base/305445 Log: Fix send/recv limit mixup. Modified: head/sys/dev/iscsi/iscsi.c Modified: head/sys/dev/iscsi/iscsi.c =

svn commit: r305444 - in head/sys/dev: bhnd bhnd/bcma bhnd/bhndb bhnd/cores/pmu bhnd/siba bwn

2016-09-05 Thread Landon J. Fuller
Author: landonf Date: Mon Sep 5 22:11:46 2016 New Revision: 305444 URL: https://svnweb.freebsd.org/changeset/base/305444 Log: bhnd(4): Implement backplane interrupt handling. This adds bhnd(4) bus-level support for querying backplane interrupt vector routing, and delegating machine/bridg

svn commit: r305443 - head/sys/dev/bwn

2016-09-05 Thread Landon J. Fuller
Author: landonf Date: Mon Sep 5 21:55:27 2016 New Revision: 305443 URL: https://svnweb.freebsd.org/changeset/base/305443 Log: bwn(4): ignore BCM4321's unpopulated USB11 host controller core. Broadcom Intensi-fi chipsets provided a common set of IP cores; on PCI/PCIe devices, the USB11 ho

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

2016-09-05 Thread John Baldwin
On Monday, September 05, 2016 11:09:17 AM Mark Johnston wrote: > On Mon, Sep 05, 2016 at 10:30:24AM -0700, John Baldwin wrote: > > On Sunday, September 04, 2016 12:29:49 AM Mark Johnston wrote: > > > Author: markj > > > Date: Sun Sep 4 00:29:48 2016 > > > New Revision: 305368 > > > URL: https://sv

svn commit: r305442 - head/sys/dev/bhnd

2016-09-05 Thread Landon J. Fuller
Author: landonf Date: Mon Sep 5 21:48:16 2016 New Revision: 305442 URL: https://svnweb.freebsd.org/changeset/base/305442 Log: bhnd(4): Add device classes for USB host/dev/dual-mode controller cores. Approved by: adrian (mentor, implicit) Modified: head/sys/dev/bhnd/bhnd_subr.c head/s

Re: svn commit: r305331 - in head/sys/cddl/contrib/opensolaris/uts/common: fs/zfs fs/zfs/sys sys/fs

2016-09-05 Thread Andriy Gapon
On 05/09/2016 23:47, Andriy Gapon wrote: > Alexander, > > I belive that this commit accidentally breaks the following scenario: > zpool create tank /dev/xxx > zpool destroy tank > zpool create tank /dev/xxx > > It seems that vdev_geom code is unaware of SPA_LOAD_CREATE state and it would > try to

Re: svn commit: r305331 - in head/sys/cddl/contrib/opensolaris/uts/common: fs/zfs fs/zfs/sys sys/fs

2016-09-05 Thread Andriy Gapon
On 05/09/2016 23:47, Andriy Gapon wrote: > Alexander, > > I belive that this commit accidentally breaks the following scenario: > zpool create tank /dev/xxx > zpool destroy tank > zpool create tank /dev/xxx > > It seems that vdev_geom code is unaware of SPA_LOAD_CREATE state and it would > try to

Re: svn commit: r305331 - in head/sys/cddl/contrib/opensolaris/uts/common: fs/zfs fs/zfs/sys sys/fs

2016-09-05 Thread Andriy Gapon
On 03/09/2016 13:04, Alexander Motin wrote: > Author: mav > Date: Sat Sep 3 10:04:37 2016 > New Revision: 305331 > URL: https://svnweb.freebsd.org/changeset/base/305331 > > Log: > MFV r304155: 7090 zfs should improve allocation order and throttle > allocations > > illumos/illumos-gate@0f7

svn commit: r305434 - head/sys/dev/usb/wlan

2016-09-05 Thread Andriy Voskoboinyk
Author: avos Date: Mon Sep 5 19:42:35 2016 New Revision: 305434 URL: https://svnweb.freebsd.org/changeset/base/305434 Log: rum: do not restart device when protmode / rtsthreshold is changed. Modified: head/sys/dev/usb/wlan/if_rum.c Modified: head/sys/dev/usb/wlan/if_rum.c ==

svn commit: r305433 - head/sys/dev/cxgbe/tom

2016-09-05 Thread Navdeep Parhar
Author: np Date: Mon Sep 5 19:37:47 2016 New Revision: 305433 URL: https://svnweb.freebsd.org/changeset/base/305433 Log: cxgbe/t4_tom: toepcb should be all-zero on allocation because the code that cleans up on failure assumes that non-NULL values indicate initialized items. Sponsored b

svn commit: r305432 - in head/sys/arm/ti: am335x cpsw

2016-09-05 Thread Luiz Otavio O Souza
Author: loos Date: Mon Sep 5 18:42:21 2016 New Revision: 305432 URL: https://svnweb.freebsd.org/changeset/base/305432 Log: Revert r305119, move the control module register data to am335x_scm.h and fix if_cpsw.c to include the correct header. Discussed with: bz Modified: head/sys

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

2016-09-05 Thread Mark Johnston
On Mon, Sep 05, 2016 at 10:30:24AM -0700, John Baldwin wrote: > On Sunday, September 04, 2016 12:29:49 AM Mark Johnston wrote: > > Author: markj > > Date: Sun Sep 4 00:29:48 2016 > > New Revision: 305368 > > URL: https://svnweb.freebsd.org/changeset/base/305368 > > > > Log: > > Micro-optimize s

svn commit: r305430 - head/contrib/gcclibs/libcpp

2016-09-05 Thread Dimitry Andric
Author: dim Date: Mon Sep 5 18:02:37 2016 New Revision: 305430 URL: https://svnweb.freebsd.org/changeset/base/305430 Log: Define libcpp's HAVE_DESIGNATED_INITIALIZERS in a defined and portable way. MFC after:3 days Modified: head/contrib/gcclibs/libcpp/system.h Modified: head/con

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

2016-09-05 Thread John Baldwin
On Sunday, September 04, 2016 12:29:49 AM Mark Johnston wrote: > Author: markj > Date: Sun Sep 4 00:29:48 2016 > New Revision: 305368 > URL: https://svnweb.freebsd.org/changeset/base/305368 > > Log: > Micro-optimize sleepq_signal(). > > Lift a comparison out of the loop that finds the high

svn commit: r305426 - in head/sys: dev/bhnd/cores/usb mips/broadcom mips/conf

2016-09-05 Thread Michael Zhilin
Author: mizhka Date: Mon Sep 5 16:06:52 2016 New Revision: 305426 URL: https://svnweb.freebsd.org/changeset/base/305426 Log: [BHND/USB] Port of EHCI/OHCI support from ZRouter This patch adds driver implementation for BHND USB core. Driver has been imported from ZRouter project with small

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

2016-09-05 Thread Mark Johnston
Author: markj Date: Mon Sep 5 16:04:40 2016 New Revision: 305425 URL: https://svnweb.freebsd.org/changeset/base/305425 Log: Remove an unreachable return state from ARM's minidumpsys(). Submitted by: Dominik Ermel MFC after:3 days Differential Revision:https://reviews.freeb

svn commit: r305422 - in head: contrib/libarchive contrib/libarchive/libarchive contrib/libarchive/libarchive/test lib/libarchive

2016-09-05 Thread Martin Matuska
Author: mm Date: Mon Sep 5 15:40:41 2016 New Revision: 305422 URL: https://svnweb.freebsd.org/changeset/base/305422 Log: MFV r305420: Sync libarchive with vendor Vendor issues fixed: PR #777: Multiple bugfixes for setup_acls() This includes a bugfix for a bug that caused ACLs not

svn commit: r305421 - in head/sys: dev/usb dev/usb/template sys

2016-09-05 Thread Hans Petter Selasky
Author: hselasky Date: Mon Sep 5 15:35:58 2016 New Revision: 305421 URL: https://svnweb.freebsd.org/changeset/base/305421 Log: Resolve deadlock between device_detach() and usbd_do_request_flags() by reviving the SX control request lock and refining which lock protects the common scratch are

svn commit: r305419 - in head/sys/arm: allwinner conf

2016-09-05 Thread Jared McNeill
Author: jmcneill Date: Mon Sep 5 13:45:45 2016 New Revision: 305419 URL: https://svnweb.freebsd.org/changeset/base/305419 Log: Add sy8106a to Allwinner kernel. This regulator is used to control VDD_CPUX and is connected to R_TWI on some H3-based Orange Pi boards. Modified: head/sys/arm/all

svn commit: r305418 - head/sys/dev/iicbus

2016-09-05 Thread Jared McNeill
Author: jmcneill Date: Mon Sep 5 13:39:54 2016 New Revision: 305418 URL: https://svnweb.freebsd.org/changeset/base/305418 Log: Add driver for Silergy Corp. SY8106A buck regulator. Added: head/sys/dev/iicbus/sy8106a.c (contents, props changed) Added: head/sys/dev/iicbus/sy8106a.c =

svn commit: r305417 - head/sys/arm/allwinner/clk

2016-09-05 Thread Jared McNeill
Author: jmcneill Date: Mon Sep 5 12:36:54 2016 New Revision: 305417 URL: https://svnweb.freebsd.org/changeset/base/305417 Log: Add support for Allwinner H3 PLL_CPUX. The H3 PLL_CPUX register looks exactly like the one found in A23, but we need to follow a specific protocol when making ad

svn commit: r305416 - in head/sys/arm/allwinner: . clk

2016-09-05 Thread Jared McNeill
Author: jmcneill Date: Mon Sep 5 11:05:14 2016 New Revision: 305416 URL: https://svnweb.freebsd.org/changeset/base/305416 Log: Add support for the Allwinner H3 Thermal Sensor Controller. The H3 embeds a single thermal sensor located in the CPU. Modified: head/sys/arm/allwinner/aw_thermal.c

svn commit: r305415 - head/usr.sbin/bsdinstall/partedit

2016-09-05 Thread Wojciech Macek
Author: wma Date: Mon Sep 5 08:42:36 2016 New Revision: 305415 URL: https://svnweb.freebsd.org/changeset/base/305415 Log: bsdinstall: add warning when unsupported partition is modified Right now is possible to modify bootable partition type to non-bootable type without getting warning fr

svn commit: r305414 - in head: contrib/top usr.bin/top

2016-09-05 Thread Dag-Erling Smørgrav
Author: des Date: Mon Sep 5 08:27:04 2016 New Revision: 305414 URL: https://svnweb.freebsd.org/changeset/base/305414 Log: Add a toggle to display the approximate amount of swap used by each process. We don't *quite* pull that number out of our backside, as the actual number is difficult to