svn commit: r326759 - head/share/misc

2017-12-10 Thread Chuck Tuffli
Author: chuck Date: Mon Dec 11 04:40:25 2017 New Revision: 326759 URL: https://svnweb.freebsd.org/changeset/base/326759 Log: Add myself to committers-src.dot Reviewed by: ken, imp Approved by: ken (mentor), imp (mentor) Differential Revision:https://reviews.freebsd.org/D13406

svn commit: r326758 - in head/sys/i386: conf include

2017-12-10 Thread Conrad Meyer
Author: cem Date: Mon Dec 11 04:32:37 2017 New Revision: 326758 URL: https://svnweb.freebsd.org/changeset/base/326758 Log: i386: Bump KSTACK_PAGES default to match amd64 Logically, extend r286288 to cover all threads, by default. The world has largely moved on from i386. Most FreeBSD

svn commit: r326755 - head/tools/tools/nanobsd/embedded

2017-12-10 Thread Warner Losh
Author: imp Date: Mon Dec 11 02:43:56 2017 New Revision: 326755 URL: https://svnweb.freebsd.org/changeset/base/326755 Log: Fix the std-x86 layout to produce a bootable system. Due to limitations in mkimg we're still not quite to where I'd like to be (I'd like to put s3 first on the disk,

svn commit: r326756 - head/tools/tools/nanobsd

2017-12-10 Thread Warner Losh
Author: imp Date: Mon Dec 11 02:44:10 2017 New Revision: 326756 URL: https://svnweb.freebsd.org/changeset/base/326756 Log: Add -I to just run the imaging part of nanobsd so you can test out changes to the packaging part of nanobsd more easily, or experiment with the image contents w/o

svn commit: r326757 - head/tools/tools/nanobsd/embedded

2017-12-10 Thread Warner Losh
Author: imp Date: Mon Dec 11 02:44:15 2017 New Revision: 326757 URL: https://svnweb.freebsd.org/changeset/base/326757 Log: Start adding commands that I know are good to build up residual knowledge about qemu's quirks. Other qemu commands are possible, but this is the quickest for testing.

Re: svn commit: r326347 - in head/sys: kern sys vm

2017-12-10 Thread Cy Schubert
In message , Andriy Gapon wri tes: > On 29/11/2017 01:40, Jeff Roberson wrote: > > Eliminate kmem_arena and kmem_object in preparation for further NUMA comm > its. > > > > The arena argument to kmem_*() is now only used in an assert. A

svn commit: r326754 - head/stand/uboot/lib

2017-12-10 Thread Ian Lepore
Author: ian Date: Sun Dec 10 23:06:45 2017 New Revision: 326754 URL: https://svnweb.freebsd.org/changeset/base/326754 Log: When building for arm arches, set PKGALIGN to the max cache line size supported by the arch, to meet u-boot's requirement that I/O be done in cache-aligned chunks.

svn commit: r326753 - head/lib/msun/man

2017-12-10 Thread Dimitry Andric
Author: dim Date: Sun Dec 10 23:03:13 2017 New Revision: 326753 URL: https://svnweb.freebsd.org/changeset/base/326753 Log: Correct r326748, indicating that tgammal(3) is mapped to tgamma(3), not to itself. Noticed by: jilles MFC after:3 days Modified:

svn commit: r326752 - head/stand/arm/uboot

2017-12-10 Thread Ian Lepore
Author: ian Date: Sun Dec 10 21:51:27 2017 New Revision: 326752 URL: https://svnweb.freebsd.org/changeset/base/326752 Log: Save and restore r9 register in arm ubldr. In old gcc 4.2, r9 was a callee- saved register, but in arm EABI it may be either callee-saved or dedicated to some special

svn commit: r326750 - head/sys/dev/iicbus

2017-12-10 Thread Ian Lepore
Author: ian Date: Sun Dec 10 18:55:42 2017 New Revision: 326750 URL: https://svnweb.freebsd.org/changeset/base/326750 Log: Do not give up if writing to the chip's control and status registers fails during startup. When a brand new chip leaves the factory, it is in a special power-saving

svn commit: r326749 - head/usr.bin/wc

2017-12-10 Thread Conrad Meyer
Author: cem Date: Sun Dec 10 17:56:03 2017 New Revision: 326749 URL: https://svnweb.freebsd.org/changeset/base/326749 Log: wc(1): Restore regular file char count fast path fstat(2) is going to be a lot faster than reading all of the bytes in a file, if we just need a character count for

svn commit: r326748 - head/lib/msun/man

2017-12-10 Thread Dimitry Andric
Author: dim Date: Sun Dec 10 16:42:59 2017 New Revision: 326748 URL: https://svnweb.freebsd.org/changeset/base/326748 Log: Document the existence and precision of the remaining long double functions for which an imprecise stub implementation was added in r255294, namely powl(3) and

svn commit: r326742 - head/contrib/jemalloc/include/jemalloc/internal

2017-12-10 Thread Michal Meloun
Author: mmel Date: Sun Dec 10 09:17:21 2017 New Revision: 326742 URL: https://svnweb.freebsd.org/changeset/base/326742 Log: Relax too restrictive assert. The problem has been reported to upstream and similar change will be included in next jemalloc release. Submitted by: David

svn commit: r326741 - head/contrib/jemalloc/include/jemalloc/internal

2017-12-10 Thread Michal Meloun
Author: mmel Date: Sun Dec 10 09:15:37 2017 New Revision: 326741 URL: https://svnweb.freebsd.org/changeset/base/326741 Log: Revert r326740. I committed wrong diff. Modified: head/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal_inlines_c.h Modified:

svn commit: r326740 - head/contrib/jemalloc/include/jemalloc/internal

2017-12-10 Thread Michal Meloun
Author: mmel Date: Sun Dec 10 08:55:48 2017 New Revision: 326740 URL: https://svnweb.freebsd.org/changeset/base/326740 Log: Relax too restrictive assert. The problem has been reported to upstream and similar change will be included in next jemalloc release. Submitted by: David

Re: svn commit: r326736 - head/usr.bin/wc

2017-12-10 Thread Bruce Evans
On Sat, 9 Dec 2017, Conrad Meyer wrote: Log: wc(1): Extend non-controversial optimizations to '-c' mode wc(1)'s slow path for counting words or multibyte characters requires conversion of the 8-bit input stream to wide characters. However, a faster path can be used for counting only lines