svn commit: r338924 - in head: share/man/man4 sys/dev/cxgbe sys/dev/cxgbe/common sys/dev/cxgbe/tom

2018-09-24 Thread Navdeep Parhar
Author: np Date: Tue Sep 25 05:52:42 2018 New Revision: 338924 URL: https://svnweb.freebsd.org/changeset/base/338924 Log: cxgbe(4): Link related changes. - Switch to using 32b port/link capabilities in the driver. The 32b format is used internally by firmwares > 1.16.45.0 and the drive

svn commit: r338922 - head/sys/powerpc/ofw

2018-09-24 Thread Justin Hibbits
Author: jhibbits Date: Tue Sep 25 02:34:28 2018 New Revision: 338922 URL: https://svnweb.freebsd.org/changeset/base/338922 Log: powerpc: Blacklist the top 64kB range of the lower 4GB PA space The PHB4 host bridge used by the POWER9 uses a 64kB range in 32-bit space at the address 0x00

svn commit: r338921 - head/sys/dev/uart

2018-09-24 Thread Colin Percival
Author: cperciva Date: Mon Sep 24 22:15:04 2018 New Revision: 338921 URL: https://svnweb.freebsd.org/changeset/base/338921 Log: Recognize the Amazon PCI serial device found in i3.metal EC2 instances as an NS8250 UART. Reviewed by: sbruno, imp Approved by: re (delphij) Sponsored by:

svn commit: r338920 - head/sbin/sysctl

2018-09-24 Thread Mateusz Piotrowski
Author: 0mp (ports committer) Date: Mon Sep 24 20:46:45 2018 New Revision: 338920 URL: https://svnweb.freebsd.org/changeset/base/338920 Log: sysctl(8): Add a standard exit status section. Reviewed by: bcr Approved by: re (gjb), krion (mentor) Differential Revision:https://revi

Re: svn commit: r338486 - in head/libexec/rtld-elf: . aarch64 arm mips powerpc powerpc64 riscv

2018-09-24 Thread Andreas Tobler
On 23.09.18 22:41, Andreas Tobler wrote: Hi Brooks, On 06.09.18 01:23, Brooks Davis wrote: Author: brooks Date: Wed Sep 5 23:23:16 2018 New Revision: 338486 URL: https://svnweb.freebsd.org/changeset/base/338486 Log: Rework rtld's TLS Variant I implementation to match r326794 The

svn commit: r338919 - in head/sys: sys vm x86/acpica

2018-09-24 Thread Mark Johnston
Author: markj Date: Mon Sep 24 19:24:17 2018 New Revision: 338919 URL: https://svnweb.freebsd.org/changeset/base/338919 Log: Add more NUMA-specific low memory predicates. Use these predicates instead of inline references to vm_min_domains. Also add a global all_domains set, akin to all_cp

svn commit: r338918 - head/usr.sbin/pmccontrol

2018-09-24 Thread Matt Macy
Author: mmacy Date: Mon Sep 24 19:06:09 2018 New Revision: 338918 URL: https://svnweb.freebsd.org/changeset/base/338918 Log: restore pmccontrol -L behavior on x86 When I updated counter definition handling for x86 I broke 'pmccontrol -L' listing counter names. This just changes pmccontr

svn commit: r338916 - head/sys/sys

2018-09-24 Thread John Baldwin
Author: jhb Date: Mon Sep 24 18:20:38 2018 New Revision: 338916 URL: https://svnweb.freebsd.org/changeset/base/338916 Log: Restore the API of the kf_sa_local and kf_sa_peer members. In 11.x and earlier these were accessible as direct members of 'struct kinfo_file'. Existing code already

svn commit: r338914 - head/sys/riscv/riscv

2018-09-24 Thread John Baldwin
Author: jhb Date: Mon Sep 24 17:41:29 2018 New Revision: 338914 URL: https://svnweb.freebsd.org/changeset/base/338914 Log: Implement pmap_sync_icache(). This invokes "fence" on the hart performing the write followed by an IPI to execute "fence.i" on all harts. This is required to sup

svn commit: r338913 - head/sys/geom/raid

2018-09-24 Thread Alexander Motin
Author: mav Date: Mon Sep 24 16:58:55 2018 New Revision: 338913 URL: https://svnweb.freebsd.org/changeset/base/338913 Log: Fix use-after-free in RAID0 error reporting of GEOM_RAID. PR: 231510 Submitted by: yang...@hotmail.com Approved by: re (gjb) MFC after:1 week Modi

svn commit: r338912 - head/sys/vm

2018-09-24 Thread Alan Cox
Author: alc Date: Mon Sep 24 16:49:02 2018 New Revision: 338912 URL: https://svnweb.freebsd.org/changeset/base/338912 Log: Passing UMA_ZONE_NOFREE to uma_zcreate() for swpctrie_zone and swblk_zone is redundant, because uma_zone_reserve_kva() is performed on both zones and it sets this same f

svn commit: r338906 - head/sys/vm

2018-09-24 Thread Mark Johnston
Author: markj Date: Mon Sep 24 15:32:46 2018 New Revision: 338906 URL: https://svnweb.freebsd.org/changeset/base/338906 Log: Ensure that "domain" is initialized when vm_ndomains == 1. Reported by: alc Approved by: re (gjb) Modified: head/sys/vm/vm_kern.c Modified: head/sys/vm/vm_ker

Re: svn commit: r338861 - head/lib/libc

2018-09-24 Thread Ed Maste
On 21 September 2018 at 16:11, Xin Li wrote: > On 9/21/18 10:49, Ed Maste wrote: >> Author: emaste >> Date: Fri Sep 21 17:49:37 2018 >> New Revision: 338861 >> URL: https://svnweb.freebsd.org/changeset/base/338861 >> >> Log: >> libc: require ifunc-capable linker for amd64/i386 >> > > It seems th

svn commit: r338903 - head/lib/libc

2018-09-24 Thread Ed Maste
Author: emaste Date: Mon Sep 24 13:42:46 2018 New Revision: 338903 URL: https://svnweb.freebsd.org/changeset/base/338903 Log: Move libc linker ifunc test to build target only Targets like 'cleandir' must not depend on toolchain capabilities. Reported by: delphij, Shawn Webb Approved