svn commit: r308825 - head/sys/dev/rtwn/rtl8812a

2016-11-18 Thread Kevin Lo
Author: kevlo Date: Sat Nov 19 07:28:00 2016 New Revision: 308825 URL: https://svnweb.freebsd.org/changeset/base/308825 Log: For RTL8812AU: - The Tx power (diff) values should be signed - Fix an off by one error when reading Tx power (diff) values Reviewed by: avos, adrian Differenti

Re: svn commit: r308691 - in head/sys: cddl/compat/opensolaris/sys cddl/contrib/opensolaris/uts/common/fs/zfs fs/tmpfs kern vm

2016-11-18 Thread Mark Millard
Alan Cox alc at rice.edu wrote on Wed Nov 16 17:54:03 UTC 2016 : > This change amounted to dead code removal, so I'm not sure how it could > have an effect. There were only a couple places where the changes were > other than mechanical in nature. Also, that the number of cores matters > is no le

svn commit: r308823 - head/sys/net80211

2016-11-18 Thread Adrian Chadd
Author: adrian Date: Sat Nov 19 02:00:24 2016 New Revision: 308823 URL: https://svnweb.freebsd.org/changeset/base/308823 Log: [net80211] handle hardware encryption offload in the receive path * teach the crypto modules about receive offload - although I have to do some further reviewing

svn commit: r308824 - head/usr.bin/locale

2016-11-18 Thread Eric van Gyzen
Author: vangyzen Date: Sat Nov 19 02:09:58 2016 New Revision: 308824 URL: https://svnweb.freebsd.org/changeset/base/308824 Log: locale: fix display of "grouping" and "mon_grouping" values The "grouping" and "mon_grouping" values are arrays of one-byte integers, not arrays of ASCII charact

svn commit: r308822 - in head/sys/arm: conf ti ti/am335x ti/omap4

2016-11-18 Thread Olivier Houchard
Author: cognet Date: Sat Nov 19 01:51:56 2016 New Revision: 308822 URL: https://svnweb.freebsd.org/changeset/base/308822 Log: Resolv the remaining conflicting symbols between omap4 and am335x, and add omap4/pandaboard into the GENERIC kernel. Modified: head/sys/arm/conf/GENERIC head/sys/a

svn commit: r308821 - head/sys/i386/i386

2016-11-18 Thread John Baldwin
Author: jhb Date: Sat Nov 19 01:36:44 2016 New Revision: 308821 URL: https://svnweb.freebsd.org/changeset/base/308821 Log: MFamd64: Various fatal page fault fixes. - If a page fault is triggered due to reserved bits in a PTE, treat it as a fatal fault and panic. - If PG_NX is in use,

svn commit: r308820 - head/sys/amd64/amd64

2016-11-18 Thread John Baldwin
Author: jhb Date: Sat Nov 19 01:34:12 2016 New Revision: 308820 URL: https://svnweb.freebsd.org/changeset/base/308820 Log: Report page faults due to reserved bits in PTEs as a separate fault type. Rather than reporting a page fault due to a bad PTE as a protection violation with the "rsv"

svn commit: r308819 - in head/sys/arm: conf ti/omap4 ti/omap4/pandaboard ti/usb

2016-11-18 Thread Olivier Houchard
Author: cognet Date: Sat Nov 19 00:55:46 2016 New Revision: 308819 URL: https://svnweb.freebsd.org/changeset/base/308819 Log: Don't assume we're running on a pandaboard if the pandaboard-specific code is compiled in, use FDT to detect it instead. Added: head/sys/arm/ti/omap4/pandaboard/pand

svn commit: r308818 - head/sys/arm/ti

2016-11-18 Thread Olivier Houchard
Author: cognet Date: Fri Nov 18 23:48:20 2016 New Revision: 308818 URL: https://svnweb.freebsd.org/changeset/base/308818 Log: Guess the TI chip based on the PLATFORM infos, instead of relying on the kernel config file. Modified: head/sys/arm/ti/ti_cpuid.h head/sys/arm/ti/ti_machdep.c Mod

Re: svn commit: r308810 - head/bin/dd

2016-11-18 Thread Adrian Chadd
fwiw, this breaks -head compilation. -a On 18 November 2016 at 13:09, Bartek Rutkowski wrote: > Author: robak (ports committer) > Date: Fri Nov 18 21:09:57 2016 > New Revision: 308810 > URL: https://svnweb.freebsd.org/changeset/base/308810 > > Log: > Capsicum support for dd(1) > > Adds Ca

svn commit: r308817 - head/sys/powerpc/include

2016-11-18 Thread Justin Hibbits
Author: jhibbits Date: Fri Nov 18 22:59:33 2016 New Revision: 308817 URL: https://svnweb.freebsd.org/changeset/base/308817 Log: Fix buildworld Change the pv_tracked flag to an int, just in case userspace decides to include this file and defines BOOKE. Guard this block from unintenti

svn commit: r308816 - in head/sys/arm: conf ti ti/omap4

2016-11-18 Thread Olivier Houchard
Author: cognet Date: Fri Nov 18 22:58:47 2016 New Revision: 308816 URL: https://svnweb.freebsd.org/changeset/base/308816 Log: Convert the omap4 code to use PLATFORM_SMP. Added: head/sys/arm/ti/omap4/omap4_mp.h (contents, props changed) Modified: head/sys/arm/conf/PANDABOARD head/sys/arm

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

2016-11-18 Thread Stephen Hurd
Author: shurd (ports committer) Date: Fri Nov 18 21:18:51 2016 New Revision: 308813 URL: https://svnweb.freebsd.org/changeset/base/308813 Log: Check link status after init Because link state change events aren't enabled until the end of init(), the initial link up event could be missed.

svn commit: r308812 - head/sbin/ifconfig

2016-11-18 Thread Adrian Chadd
Author: adrian Date: Fri Nov 18 21:12:36 2016 New Revision: 308812 URL: https://svnweb.freebsd.org/changeset/base/308812 Log: [ifconfig] remove now duplicate IEEE80211_C_BITS definition; it's now in _ieee80211.h . Reviewed by: avos Differential Revision:https://reviews.freebsd.o

svn commit: r308811 - head/sys/net80211

2016-11-18 Thread Adrian Chadd
Author: adrian Date: Fri Nov 18 21:12:13 2016 New Revision: 308811 URL: https://svnweb.freebsd.org/changeset/base/308811 Log: [net80211] shuffle IEEE80211_C and HTC bits over to _ieee80211.h so userland can use this. Reviewed by: avos Differential Revision:https://reviews.freebs

svn commit: r308810 - head/bin/dd

2016-11-18 Thread Bartek Rutkowski
Author: robak (ports committer) Date: Fri Nov 18 21:09:57 2016 New Revision: 308810 URL: https://svnweb.freebsd.org/changeset/base/308810 Log: Capsicum support for dd(1) Adds Capsicum sandboxing to dd utility. Submitted by: Pawel Biernacki Reviewed by: allanjude, emaste, oshogbo

Re: svn commit: r308798 - head/share/man/man4

2016-11-18 Thread John Baldwin
On Friday, November 18, 2016 07:36:00 AM Dexuan Cui wrote: > Author: dexuan > Date: Fri Nov 18 07:36:00 2016 > New Revision: 308798 > URL: https://svnweb.freebsd.org/changeset/base/308798 > > Log: > remove the hv_ata_pci_disengage(4) manual > > A few months ago, we removed the driver, which

svn commit: r308809 - head/usr.bin/locale

2016-11-18 Thread Hajimu UMEMOTO
Author: ume Date: Fri Nov 18 17:18:05 2016 New Revision: 308809 URL: https://svnweb.freebsd.org/changeset/base/308809 Log: We need to lookup locale when command line arguments are specified, as well. MFC after:1 week Modified: head/usr.bin/locale/locale.c Modified: head/usr.bin/local

svn commit: r308808 - head/usr.bin/locale

2016-11-18 Thread Hajimu UMEMOTO
Author: ume Date: Fri Nov 18 16:48:37 2016 New Revision: 308808 URL: https://svnweb.freebsd.org/changeset/base/308808 Log: Lookup locale when print all keywords as well. Reported by: dumbbell Reviewed by: dumbbell MFC after:1 week Modified: head/usr.bin/locale/locale.c Modifie

svn commit: r308807 - in head/sys: conf mips/include

2016-11-18 Thread Alexander Kabaev
Author: kan Date: Fri Nov 18 16:23:31 2016 New Revision: 308807 URL: https://svnweb.freebsd.org/changeset/base/308807 Log: Subject: [PATCH] Pass MACHINE_ARCH on command line for MIPS kernels. While there, make param.h guess proper MACHINE_ARCH on hardfloat targets correctly as well, so to

Re: svn commit: r308718 - in head/sys: contrib/ncsw/inc contrib/ncsw/user/env dev/dpaa powerpc/booke powerpc/include powerpc/mpc85xx

2016-11-18 Thread Ed Maste
On 16 November 2016 at 00:24, Justin Hibbits wrote: > Author: jhibbits > Date: Wed Nov 16 05:24:42 2016 > New Revision: 308718 > URL: https://svnweb.freebsd.org/changeset/base/308718 My tinderbox build is now failing in libc with: In file included from /scratch/tmp/emaste/obj/powerpc.powerpc/scr

Re: svn commit: r305852 - in head/sys: dev/cxgbe dev/cxgbe/firmware modules/cxgbe modules/cxgbe/if_cc modules/cxgbe/if_ccv

2016-11-18 Thread Slawa Olhovchenkov
On Fri, Sep 16, 2016 at 12:08:37AM +, Navdeep Parhar wrote: > Author: np > Date: Fri Sep 16 00:08:37 2016 > New Revision: 305852 > URL: https://svnweb.freebsd.org/changeset/base/305852 > > Log: > cxgbe(4): Attach to cards with the Terminator 6 ASIC. T6 cards will > come up as 't6nex' nex

svn commit: r308806 - in head: lib/libutil usr.sbin/pw

2016-11-18 Thread Alan Somers
Author: asomers Date: Fri Nov 18 16:07:08 2016 New Revision: 308806 URL: https://svnweb.freebsd.org/changeset/base/308806 Log: Speed up pw operations that edit /etc/group or /etc/passwd r285050 fixed a bug in pw that could lead to /etc/passwd or /etc/group corruption on power loss. Howeve

Re: svn commit: r303643 - in head/sys: kern sys

2016-11-18 Thread Olivier Cochard-Labbé
On Mon, Aug 1, 2016 at 11:48 PM, Mateusz Guzik wrote: > Author: mjg > Date: Mon Aug 1 21:48:37 2016 > New Revision: 303643 > URL: https://svnweb.freebsd.org/changeset/base/303643 > > Log: > Implement trivial backoff for locking primitives. > > > ​I was checking FreeBSD's forwarding speed evolu

svn commit: r308803 - head/sys/mips/atheros/ar531x

2016-11-18 Thread Michael Zhilin
Author: mizhka Date: Fri Nov 18 14:06:29 2016 New Revision: 308803 URL: https://svnweb.freebsd.org/changeset/base/308803 Log: [mips/ar531x] code cleanup, non-INTRNG support This commit improves code styles like: - removing commented code - format comments as C-style - add spaces af

Re: svn commit: r308798 - head/share/man/man4

2016-11-18 Thread Cy Schubert
In message , Dexuan Cui writes: > > > head/share/man/man4/hv_ata_pci_disengage.4 > > > Modified: > > > head/share/man/man4/hv_vmbus.4 > > > @@ -74,7 +74,6 @@ the interface that facilitate high perfo > > > between the VSCs and VSPs. > > > All VSCs utilize the VMBus driver. > > > .Sh SEE ALSO

Re: svn commit: r308691 - in head/sys: cddl/compat/opensolaris/sys cddl/contrib/opensolaris/uts/common/fs/zfs fs/tmpfs kern vm

2016-11-18 Thread Ruslan Bukin
On Fri, Nov 18, 2016 at 12:37:28PM +0200, Konstantin Belousov wrote: > On Fri, Nov 18, 2016 at 10:22:35AM +, Ruslan Bukin wrote: > > On Thu, Nov 17, 2016 at 10:51:40AM -0600, Alan Cox wrote: > > > On 11/16/2016 11:52, Ruslan Bukin wrote: > > > > On Wed, Nov 16, 2016 at 04:59:39PM +, Ruslan

RE: svn commit: r308799 - head/share/man/man4

2016-11-18 Thread Dexuan Cui via svn-src-head
> > Author: dexuan > > Date: Fri Nov 18 08:15:45 2016 > > New Revision: 308799 > > Modified: head/share/man/man4/Makefile > > > = > > --- head/share/man/man4/MakefileFri Nov 18 07:36:00 > > 2016(r308798) +++ head/share/man/man4/Makefile Fri Nov > > 18 08:15:45 2016(

Re: svn commit: r308691 - in head/sys: cddl/compat/opensolaris/sys cddl/contrib/opensolaris/uts/common/fs/zfs fs/tmpfs kern vm

2016-11-18 Thread Konstantin Belousov
On Fri, Nov 18, 2016 at 10:22:35AM +, Ruslan Bukin wrote: > On Thu, Nov 17, 2016 at 10:51:40AM -0600, Alan Cox wrote: > > On 11/16/2016 11:52, Ruslan Bukin wrote: > > > On Wed, Nov 16, 2016 at 04:59:39PM +, Ruslan Bukin wrote: > > >> On Wed, Nov 16, 2016 at 06:53:43PM +0200, Konstantin Belo

Re: svn commit: r308799 - head/share/man/man4

2016-11-18 Thread Andrew Turner
On Fri, 18 Nov 2016 08:15:46 + (UTC) Dexuan Cui wrote: > Author: dexuan > Date: Fri Nov 18 08:15:45 2016 > New Revision: 308799 > URL: https://svnweb.freebsd.org/changeset/base/308799 > > Log: > fix share/man/man4/Makefile for hv_ata_pci_disengage.4 > > We need to remove the line sinc

Re: svn commit: r308691 - in head/sys: cddl/compat/opensolaris/sys cddl/contrib/opensolaris/uts/common/fs/zfs fs/tmpfs kern vm

2016-11-18 Thread Ruslan Bukin
On Thu, Nov 17, 2016 at 10:51:40AM -0600, Alan Cox wrote: > On 11/16/2016 11:52, Ruslan Bukin wrote: > > On Wed, Nov 16, 2016 at 04:59:39PM +, Ruslan Bukin wrote: > >> On Wed, Nov 16, 2016 at 06:53:43PM +0200, Konstantin Belousov wrote: > >>> On Wed, Nov 16, 2016 at 01:37:18PM +, Ruslan Buk

RE: svn commit: r308798 - head/share/man/man4

2016-11-18 Thread Dexuan Cui via svn-src-head
> > head/share/man/man4/hv_ata_pci_disengage.4 > > Modified: > > head/share/man/man4/hv_vmbus.4 > > @@ -74,7 +74,6 @@ the interface that facilitate high perfo > > between the VSCs and VSPs. > > All VSCs utilize the VMBus driver. > > .Sh SEE ALSO > > -.Xr hv_ata_pci_disengage 4 , > > .Xr hv_

svn commit: r308799 - head/share/man/man4

2016-11-18 Thread Dexuan Cui
Author: dexuan Date: Fri Nov 18 08:15:45 2016 New Revision: 308799 URL: https://svnweb.freebsd.org/changeset/base/308799 Log: fix share/man/man4/Makefile for hv_ata_pci_disengage.4 We need to remove the line since we removed the related manual just now. Reviewed by: sephe Approved b

Re: svn commit: r308798 - head/share/man/man4

2016-11-18 Thread Cy Schubert
In message <201611180736.uai7a0gi063...@repo.freebsd.org>, Dexuan Cui writes: > Author: dexuan > Date: Fri Nov 18 07:36:00 2016 > New Revision: 308798 > URL: https://svnweb.freebsd.org/changeset/base/308798 > > Log: > remove the hv_ata_pci_disengage(4) manual > > A few months ago, we remov