svn commit: r338321 - head/release/tools

2018-08-25 Thread Colin Percival
Author: cperciva Date: Sun Aug 26 03:56:54 2018 New Revision: 338321 URL: https://svnweb.freebsd.org/changeset/base/338321 Log: Disable atkbd0 and atkdbc0 in EC2 AMIs. This has the effect of skipping the probing and attaching of the PS/2 mouse (not present on EC2) and keyboard (emulated,

svn commit: r338320 - head/usr.sbin/bluetooth/hcsecd

2018-08-25 Thread Brad Davis
Author: brd Date: Sun Aug 26 02:09:20 2018 New Revision: 338320 URL: https://svnweb.freebsd.org/changeset/base/338320 Log: Fix the install location of hcsecd.conf Submitted by: vangyzen Approved by: re (marius) Modified: head/usr.sbin/bluetooth/hcsecd/Makefile Modified:

Re: svn commit: r338238 - in head/sbin/init: . rc.d

2018-08-25 Thread Conrad Meyer
On Sat, Aug 25, 2018 at 9:30 AM, Warner Losh wrote: > On Thu, Aug 23, 2018 at 3:32 PM Conrad Meyer wrote: >> On Wed, Aug 22, 2018 at 10:06 PM, Warner Losh wrote: >> > devmatch_blacklist is a space separated list of modules (w/o the .ko >> > or full path) to exclude from devmatch's

svn commit: r338319 - head/usr.sbin/syslogd

2018-08-25 Thread Brad Davis
Author: brd Date: Sat Aug 25 20:19:16 2018 New Revision: 338319 URL: https://svnweb.freebsd.org/changeset/base/338319 Log: Remove trailing slash in pathname so that valid METALOG is created in the NO_ROOT case of make packages. Submitted by: Dan McGregor Approved by: re (rgrimes)

svn commit: r338318 - in head/sys: amd64/amd64 arm/allwinner arm/arm arm/freescale/imx arm/nvidia arm64/arm64 compat/linuxkpi/common/include/linux compat/linuxkpi/common/src dev/agp dev/amd_ecc_inj...

2018-08-25 Thread Alan Cox
Author: alc Date: Sat Aug 25 19:38:08 2018 New Revision: 338318 URL: https://svnweb.freebsd.org/changeset/base/338318 Log: Eliminate the arena parameter to kmem_free(). Implicitly this corrects an error in the function hypercall_memfree(), where the wrong arena was being passed to

svn commit: r338317 - head/libexec/rtld-elf/arm

2018-08-25 Thread Michal Meloun
Author: mmel Date: Sat Aug 25 16:54:37 2018 New Revision: 338317 URL: https://svnweb.freebsd.org/changeset/base/338317 Log: Fix wrong offset calculation for R_ARM_TLS_TPOFF32 relocations. TLS_TCB_SIZE is already accounted in defobj-> tlsoffset so all these symbols were incorrectly relocated

Re: svn commit: r338238 - in head/sbin/init: . rc.d

2018-08-25 Thread Warner Losh
On Thu, Aug 23, 2018 at 3:32 PM Conrad Meyer wrote: > On Wed, Aug 22, 2018 at 10:06 PM, Warner Losh wrote: > > Author: imp > > Date: Thu Aug 23 05:06:27 2018 > > New Revision: 338238 > > URL: https://svnweb.freebsd.org/changeset/base/338238 > > > > Log: > > Implement blacklisting for devmatch

svn commit: r338316 - in head/sys/dev/vt: . hw/efifb hw/fb hw/vga

2018-08-25 Thread Colin Percival
Author: cperciva Date: Sat Aug 25 16:14:56 2018 New Revision: 338316 URL: https://svnweb.freebsd.org/changeset/base/338316 Log: Speed up vt(4) by keeping a record of the most recently drawn character and the foreground and background colours. In bitblt_text functions, compare values to

svn commit: r338315 - head/usr.bin/top

2018-08-25 Thread Mark Johnston
Author: markj Date: Sat Aug 25 15:59:51 2018 New Revision: 338315 URL: https://svnweb.freebsd.org/changeset/base/338315 Log: Fix column alignment in per-thread mode. PR: 230872 Approved by: re (marius) MFC after:1 week Modified: head/usr.bin/top/machine.c Modified:

svn commit: r338314 - head/sbin/devmatch

2018-08-25 Thread Warner Losh
Author: imp Date: Sat Aug 25 15:47:52 2018 New Revision: 338314 URL: https://svnweb.freebsd.org/changeset/base/338314 Log: Add in a missing newline In the conversion, the newline got stripped. It worked fine when there was only one module, but not when there are many. Add back the

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

2018-08-25 Thread Konstantin Belousov
Author: kib Date: Sat Aug 25 15:31:23 2018 New Revision: 338313 URL: https://svnweb.freebsd.org/changeset/base/338313 Log: Remove dead code in i386 cpu_throw(). Curpmap must be already valid when cpu_throw() is called, even for early AP startup. Suggested by: alc Reviewed by:

svn commit: r338312 - in head/sys: amd64/amd64 i386/i386 i386/include x86/x86

2018-08-25 Thread Konstantin Belousov
Author: kib Date: Sat Aug 25 15:21:28 2018 New Revision: 338312 URL: https://svnweb.freebsd.org/changeset/base/338312 Log: Unify amd64 and i386 vmspace0 pmap activation. Add pmap_activate_boot() for i386, move the invocation on APs from MD init_secondary() to x86 init_secondary_tail().