svn commit: r323692 - in head/sys/compat: linsysfs linux

2017-09-17 Thread Conrad Meyer
Author: cem Date: Sun Sep 17 23:40:16 2017 New Revision: 323692 URL: https://svnweb.freebsd.org/changeset/base/323692 Log: linsysfs(5): Add support for recent libdrm Expose more information about PCI devices (and GPUs in particular) via linsysfs to libdrm. This allows unmodified mode

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

2017-09-17 Thread Conrad Meyer
Author: cem Date: Sun Sep 17 22:58:13 2017 New Revision: 323690 URL: https://svnweb.freebsd.org/changeset/base/323690 Log: MCA: Expand AMD Thresholding support to cover all banks When it was added in r314636, AMD Thresholding was hardcoded to only bank 4 (Northbridge) for some reason. Ho

svn commit: r323691 - in head/sys: dev/iicbus modules/i2c modules/i2c/icee

2017-09-17 Thread Ian Lepore
Author: ian Date: Sun Sep 17 22:58:13 2017 New Revision: 323691 URL: https://svnweb.freebsd.org/changeset/base/323691 Log: Give icee(4) a detach() method so it can be used as a module. Add a module makefile for it. Added: head/sys/modules/i2c/icee/ head/sys/modules/i2c/icee/Makefile (c

svn commit: r323689 - head/sys/fs/nfsclient

2017-09-17 Thread Rick Macklem
Author: rmacklem Date: Sun Sep 17 22:18:01 2017 New Revision: 323689 URL: https://svnweb.freebsd.org/changeset/base/323689 Log: Fix bogus FREAD with NFSV4OPEN_ACCESSREAD. No functional change. The code in nfscl_doflayoutio() bogusly used FREAD instead of NFSV4OPEN_ACCESSREAD. Since both h

Re: svn commit: r323641 - head/sys/arm/allwinner (BananapiM3 [an A83T] and USB: BPI-M3 historically had usb nodes listed in ofwdump -a)

2017-09-17 Thread Mark Millard
On 2017-Sep-17, at 12:28 PM, Emmanuel Vadot wrote: > On Sun, 17 Sep 2017 11:50:49 -0700 > Mark Millard wrote: > >>> Author: manu >>> Date: Sat Sep 16 15:58:20 2017 >>> New Revision: 323641 >>> URL: >>> https://svnweb.freebsd.org/changeset/base/323641 >>> >>> >>> Log: >>> Allwinner usb phy:

svn commit: r323687 - head/sys/powerpc/powerpc

2017-09-17 Thread Justin Hibbits
Author: jhibbits Date: Sun Sep 17 20:07:20 2017 New Revision: 323687 URL: https://svnweb.freebsd.org/changeset/base/323687 Log: Don't use a non-zero argument for __builtin_frame_address __builtin_frame_address with a non-zero argument is unsafe and rejected by newer gcc. Since it doesn't

Re: svn commit: r323641 - head/sys/arm/allwinner (BananapiM3 [an A83T] and USB: BPI-M3 historically had usb nodes listed in ofwdump -a)

2017-09-17 Thread Mark Millard
[I went looking in the tree for head -r323676 and found *.dts* files listing usb things for the BPI-M3 and a83t. So I add notes about that.] On 2017-Sep-17, at 11:50 AM, Mark Millard wrote: >> Author: manu >> Date: Sat Sep 16 15:58:20 2017 >> New Revision: 323641 >> URL: >> https://svnweb.freeb

svn commit: r323684 - head/sys/powerpc/powerpc

2017-09-17 Thread Justin Hibbits
Author: jhibbits Date: Sun Sep 17 19:40:17 2017 New Revision: 323684 URL: https://svnweb.freebsd.org/changeset/base/323684 Log: Print the correct bitmask for the running Book-E CPU All the Book-E world is no longer e500v{1,2}. e500mc the 64-bit derivatives do not use the DOZE/NAP bits w

Re: svn commit: r323641 - head/sys/arm/allwinner (BananapiM3 [an A83T] and USB: BPI-M3 historically had usb nodes listed in ofwdump -a)

2017-09-17 Thread Emmanuel Vadot
On Sun, 17 Sep 2017 11:50:49 -0700 Mark Millard wrote: > > Author: manu > > Date: Sat Sep 16 15:58:20 2017 > > New Revision: 323641 > > URL: > > https://svnweb.freebsd.org/changeset/base/323641 > > > > > > Log: > > Allwinner usb phy: Rework resource allocation > > > > . . . > > > > W

svn commit: r323683 - in head: contrib/file contrib/file/doc contrib/file/magic contrib/file/magic/Magdir contrib/file/python contrib/file/src contrib/file/tests lib/libmagic

2017-09-17 Thread Gordon Tetlow
Author: gordon Date: Sun Sep 17 19:14:38 2017 New Revision: 323683 URL: https://svnweb.freebsd.org/changeset/base/323683 Log: MFV r323678: file 5.32 Approved by: emaste (mentor) MFC after:2 weeks Differential Revision:https://reviews.freebsd.org/D12400 Added: head/contri

Re: svn commit: r323641 - head/sys/arm/allwinner (BananapiM3 [an A83T] and USB: BPI-M3 historically had usb nodes listed in ofwdump -a)

2017-09-17 Thread Mark Millard
> Author: manu > Date: Sat Sep 16 15:58:20 2017 > New Revision: 323641 > URL: > https://svnweb.freebsd.org/changeset/base/323641 > > > Log: > Allwinner usb phy: Rework resource allocation > > . . . > > While here remove A83T code as upstream and FreeBSD dts don't have > nodes for USB

Re: svn commit: r323290 - head/sys/vm

2017-09-17 Thread Mark Johnston
On Sun, Sep 17, 2017 at 02:56:44PM +0200, Andreas Tobler wrote: > On 17.09.17 00:28, Mark Johnston wrote: > > Thanks. Could you please try applying the patch at the end of this email > > and see if that fixes the issue? I have not yet tried to compile it, > > sorry. > > Excellent! I can confirm th

svn commit: r323676 - head/sys/powerpc/aim

2017-09-17 Thread Mark Johnston
Author: markj Date: Sun Sep 17 15:40:12 2017 New Revision: 323676 URL: https://svnweb.freebsd.org/changeset/base/323676 Log: Implement mmu_page_init for AIM platforms. As of r323290 we cannot rely on the vm_page array being zero-initialized. Reported and tested by: andreast M

svn commit: r323675 - head/lib/libsysdecode

2017-09-17 Thread Ed Maste
Author: emaste Date: Sun Sep 17 14:03:54 2017 New Revision: 323675 URL: https://svnweb.freebsd.org/changeset/base/323675 Log: libsysdecode: report invalid cap_rights_t Previously we'd have an assertion failure in cap_rights_is_set if sysdecode_cap_rights is called with an invalid cap_righ

Re: svn commit: r323290 - head/sys/vm

2017-09-17 Thread Andreas Tobler
On 17.09.17 00:28, Mark Johnston wrote: On Sat, Sep 16, 2017 at 09:01:56PM +0200, Andreas Tobler wrote: On 14.09.17 22:32, Mark Johnston wrote: On Thu, Sep 14, 2017 at 09:51:17PM +0200, Andreas Tobler wrote: Hi Mark, On 07.09.17 23:43, Mark Johnston wrote: Author: markj Date: Thu Sep 7 21:4

svn commit: r323671 - in head: . sbin/geom/class/eli

2017-09-17 Thread Mariusz Zaborski
Author: oshogbo Date: Sun Sep 17 10:28:45 2017 New Revision: 323671 URL: https://svnweb.freebsd.org/changeset/base/323671 Log: Fix language used in the r322923. Pointed out by: wblock@ MFC after: 1 week X-MFC-with: r322923 Modified: head/UPDATING head/sbin/geom/class/eli/g

svn commit: r323670 - head/sys/netinet

2017-09-17 Thread Michael Tuexen
Author: tuexen Date: Sun Sep 17 09:27:27 2017 New Revision: 323670 URL: https://svnweb.freebsd.org/changeset/base/323670 Log: Fix an accounting bug and use sctp_timer_start to start a timer. MFC after:1 week Modified: head/sys/netinet/sctp_indata.c Modified: head/sys/netinet/sctp_in