svn commit: r338418 - in head: stand/common stand/userboot stand/userboot/userboot stand/userboot/userboot_4th stand/userboot/userboot_lua usr.sbin/bhyveload

2018-08-31 Thread Kyle Evans
Author: kevans Date: Sat Sep 1 02:23:45 2018 New Revision: 338418 URL: https://svnweb.freebsd.org/changeset/base/338418 Log: userboot: handle guest interpreter mismatches more intelligently The switch to lualoader creates a problem with userboot: the host is inclined to build userboot

svn commit: r338417 - head/lib/libbe

2018-08-31 Thread Kyle Evans
Author: kevans Date: Sat Sep 1 02:22:26 2018 New Revision: 338417 URL: https://svnweb.freebsd.org/changeset/base/338417 Log: libbe(3): Fix error handling with respect to be_exists Some paths through be_exists will set the error state, others will not There are multiple reasons that a

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

2018-08-31 Thread Mark Johnston
Author: markj Date: Fri Aug 31 21:45:05 2018 New Revision: 338416 URL: https://svnweb.freebsd.org/changeset/base/338416 Log: Re-compute the ARC size before computing the MFU target. This fixes an upstream regression introduced in r331404, causing overly aggressive reclamation of the ARC

Re: svn commit: r338400 - head/release/tools

2018-08-31 Thread Kyle Evans
On Fri, Aug 31, 2018 at 2:44 PM Mark Millard wrote: > > I'm not sure if the following is intended or not. > > I tried using > > beastie_disable="YES" > loader_color="NO" > > in boot/loader.conf on head -r338341 . > Usage of loader_color was fixed in r338394 so that color reset happens after

Re: svn commit: r338400 - head/release/tools

2018-08-31 Thread Mark Millard via svn-src-head
I'm not sure if the following is intended or not. I tried using beastie_disable="YES" loader_color="NO" in boot/loader.conf on head -r338341 . The default colors are still changed during: (some characters are filtered out) QUOTE Setting currdev to disk2p2:

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

2018-08-31 Thread John Baldwin
Author: jhb Date: Fri Aug 31 18:26:37 2018 New Revision: 338415 URL: https://svnweb.freebsd.org/changeset/base/338415 Log: Fix build of x86 UP kernels after dynamic IRQ changes in r338360. Reported by: Ian FREISLICH Approved by: re (gjb) MFC after:2 weeks Modified:

Re: svn commit: r338404 - head/sys/conf

2018-08-31 Thread Glen Barber
Trimmed Mark's last reply, to provide more verbose output from the sparc64 build that failed just now with the same error, but more verbosity. >>> stage 3.1: building everything -- In file included from /usr/src/sys/sys/param.h:96,

Re: svn commit: r338404 - head/sys/conf

2018-08-31 Thread Mark Millard via svn-src-head
On 2018-Aug-31, at 9:40 AM, Glen Barber wrote: > On Fri, Aug 31, 2018 at 09:34:00AM -0700, Mark Millard wrote: >> On Fri, Aug 31, 2018 at 02:20:09PM +, Glen Barber wrote: On Fri, Aug 31, 2018 at 08:51:29AM -0400, Ed Maste wrote: > On 30 August 2018 at 22:46, Glen Barber wrote:

Re: svn commit: r338404 - head/sys/conf

2018-08-31 Thread Glen Barber
On Fri, Aug 31, 2018 at 09:34:00AM -0700, Mark Millard wrote: > On Fri, Aug 31, 2018 at 02:20:09PM +, Glen Barber wrote: > > > On Fri, Aug 31, 2018 at 08:51:29AM -0400, Ed Maste wrote: > > > > On 30 August 2018 at 22:46, Glen Barber wrote: > > > > > > > > > > As I look closer at the log, I

Re: svn commit: r338404 - head/sys/conf

2018-08-31 Thread Mark Millard via svn-src-head
On Fri, Aug 31, 2018 at 02:20:09PM +, Glen Barber wrote: > > On Fri, Aug 31, 2018 at 08:51:29AM -0400, Ed Maste wrote: > > > On 30 August 2018 at 22:46, Glen Barber wrote: > > > > > > > > As I look closer at the log, I have a sneaking suspicion this may have > > > > been a transient. I'm

Re: svn commit: r338404 - head/sys/conf

2018-08-31 Thread Li-Wen Hsu
On Fri, Aug 31, 2018 at 3:20 PM Glen Barber wrote: > > On Fri, Aug 31, 2018 at 08:51:29AM -0400, Ed Maste wrote: > > On 30 August 2018 at 22:46, Glen Barber wrote: > > > > > > As I look closer at the log, I have a sneaking suspicion this may have > > > been a transient. I'm redoing the i386

svn commit: r338410 - head/sys/conf

2018-08-31 Thread Glen Barber
Author: gjb Date: Fri Aug 31 16:29:36 2018 New Revision: 338410 URL: https://svnweb.freebsd.org/changeset/base/338410 Log: Update head from ALPHA3 to ALPHA4 as part of the 12.0-RELEASE cycle. The i386 build failure appears to be transient, and now becoming more difficult to reliably

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

2018-08-31 Thread Ruslan Bukin
Author: br Date: Fri Aug 31 16:15:46 2018 New Revision: 338409 URL: https://svnweb.freebsd.org/changeset/base/338409 Log: Fix an integer overflow while setting the kernel address (MODINFO_ADDR). This eliminates build warning and makes kldstat happy. Approved by: re (marius)

svn commit: r338408 - head/sys/dev/pci

2018-08-31 Thread John Baldwin
Author: jhb Date: Fri Aug 31 16:10:01 2018 New Revision: 338408 URL: https://svnweb.freebsd.org/changeset/base/338408 Log: Don't directly dereference a user pointer in the VPD ioctl. The PCIOCLISTVPD ioctl on /dev/pci is used to fetch a list of VPD key-value pairs for a specific PCI

svn commit: r338407 - head/stand/common

2018-08-31 Thread Kyle Evans
Author: kevans Date: Fri Aug 31 15:02:53 2018 New Revision: 338407 URL: https://svnweb.freebsd.org/changeset/base/338407 Log: lualoader: Print error messages from command failures at the prompt Previously lualoader would remain silent, rather than printing command_errmsg or noting that a

Re: svn commit: r338404 - head/sys/conf

2018-08-31 Thread Glen Barber
On Fri, Aug 31, 2018 at 02:20:09PM +, Glen Barber wrote: > On Fri, Aug 31, 2018 at 08:51:29AM -0400, Ed Maste wrote: > > On 30 August 2018 at 22:46, Glen Barber wrote: > > > > > > As I look closer at the log, I have a sneaking suspicion this may have > > > been a transient. I'm redoing the

Re: svn commit: r338404 - head/sys/conf

2018-08-31 Thread Glen Barber
On Fri, Aug 31, 2018 at 08:51:29AM -0400, Ed Maste wrote: > On 30 August 2018 at 22:46, Glen Barber wrote: > > > > As I look closer at the log, I have a sneaking suspicion this may have > > been a transient. I'm redoing the i386 build against the original > > r338401 for i386 alone as a test, if

Re: svn commit: r338404 - head/sys/conf

2018-08-31 Thread Ed Maste
On 30 August 2018 at 22:46, Glen Barber wrote: > > As I look closer at the log, I have a sneaking suspicion this may have > been a transient. I'm redoing the i386 build against the original > r338401 for i386 alone as a test, if nothing else, to see if it fails in > the same place. What's the

svn commit: r338406 - head/sys/netinet6

2018-08-31 Thread Kristof Provost
Author: kp Date: Fri Aug 31 08:37:15 2018 New Revision: 338406 URL: https://svnweb.freebsd.org/changeset/base/338406 Log: frag6: Fix fragment reassembly r337776 started hashing the fragments into buckets for faster lookup. The hashkey is larger than intended. This results in random