svn commit: r290262 - head/usr.sbin/makefs

2015-11-01 Thread Garrett Cooper
Author: ngie Date: Mon Nov 2 07:46:47 2015 New Revision: 290262 URL: https://svnweb.freebsd.org/changeset/base/290262 Log: Fix spelling of `isolevel` cd9660 option MFC after: 1 week X-MFC with: r290260 Sponsored by: EMC / Isilon Storage Division Modified: head/usr.sbin/makefs/makefs

svn commit: r290261 - head/usr.sbin/makefs

2015-11-01 Thread Garrett Cooper
Author: ngie Date: Mon Nov 2 07:42:42 2015 New Revision: 290261 URL: https://svnweb.freebsd.org/changeset/base/290261 Log: Bump .Dd for r290259 and r290260 Modified: head/usr.sbin/makefs/makefs.8 Modified: head/usr.sbin/makefs/makefs.8 ===

svn commit: r290260 - head/usr.sbin/makefs

2015-11-01 Thread Garrett Cooper
Author: ngie Date: Mon Nov 2 07:40:18 2015 New Revision: 290260 URL: https://svnweb.freebsd.org/changeset/base/290260 Log: Document undocumented long options for -t cd9660 Note which options have been implemented and which options haven't been implemented Submitted as the following

svn commit: r290259 - head/usr.sbin/makefs

2015-11-01 Thread Garrett Cooper
Author: ngie Date: Mon Nov 2 07:36:42 2015 New Revision: 290259 URL: https://svnweb.freebsd.org/changeset/base/290259 Log: Sync makefs(8) content a bit with src/usr.sbin/makefs/makefs.8@1.53 Sections involving unimplemented filesystems (chfs, msdosfs, udf, v7fs) and options have been omi

Re: svn commit: r290234 - head/share/misc

2015-11-01 Thread Alexey Dokuchaev
On Sun, Nov 01, 2015 at 04:54:55PM +, Michal Meloun wrote: > New Revision: 290234 > URL: https://svnweb.freebsd.org/changeset/base/290234 > > Log: > Install myself as src committer. > > Approved by:kib (mentor) > > Description of fields to fill in above: 76

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

2015-11-01 Thread Adrian Chadd
On 1 November 2015 at 20:20, NGie Cooper wrote: > >> On Nov 1, 2015, at 20:15, Adrian Chadd wrote: >> >> well, there's one cpu, nbuf=128, so lofreebuffers will be >> MIN(nbuf/25+20, 128); nbuf=128, so it'll be 25. >> hifreebuffers will be .. (3*25)/2, so 37. > > The values calculated via the old

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

2015-11-01 Thread NGie Cooper
> On Nov 1, 2015, at 20:15, Adrian Chadd wrote: > > well, there's one cpu, nbuf=128, so lofreebuffers will be > MIN(nbuf/25+20, 128); nbuf=128, so it'll be 25. > hifreebuffers will be .. (3*25)/2, so 37. The values calculated via the old formulas were 12 and 24, BTW. What’s your maxbufspace se

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

2015-11-01 Thread Adrian Chadd
well, there's one cpu, nbuf=128, so lofreebuffers will be MIN(nbuf/25+20, 128); nbuf=128, so it'll be 25. hifreebuffers will be .. (3*25)/2, so 37. -adrian ___ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all

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

2015-11-01 Thread Adrian Chadd
On 1 November 2015 at 20:05, Jeff Roberson wrote: > On Sun, 1 Nov 2015, NGie Cooper wrote: > >> >>> On Nov 1, 2015, at 19:20, Adrian Chadd wrote: >>> >>> hiya jeff, >>> >>> this broke low-memory, no-swap boards (eg MIPS.) >>> >>> On a MIPS board (carambola2) with 32MB of RAM, just scp'ing a kerne

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

2015-11-01 Thread NGie Cooper
> On Nov 1, 2015, at 19:33, Adrian Chadd wrote: > > Well, sure, but what was it doing before? Like, what should I tune it to? > > 32MB of RAM (and we still boot/run on 16MB RAM, fwiw) doesn't exactly > leave much in the way of "space" ... I don’t have benchmarks that I can provide to back up a

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

2015-11-01 Thread Jeff Roberson
On Sun, 1 Nov 2015, NGie Cooper wrote: On Nov 1, 2015, at 19:20, Adrian Chadd wrote: hiya jeff, this broke low-memory, no-swap boards (eg MIPS.) On a MIPS board (carambola2) with 32MB of RAM, just scp'ing a kernel into the rootfs on USB hangs the system. After doing some digging, I found t

svn commit: r290258 - head/sys/mips/mips

2015-11-01 Thread Adrian Chadd
Author: adrian Date: Mon Nov 2 03:36:15 2015 New Revision: 290258 URL: https://svnweb.freebsd.org/changeset/base/290258 Log: mips: rate limit the trap handler output; add pid/tid/program name. I discovered that we're logging each trap, which gets pretty spendy; and there wasn't any furth

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

2015-11-01 Thread NGie Cooper
> On Nov 1, 2015, at 19:20, Adrian Chadd wrote: > > hiya jeff, > > this broke low-memory, no-swap boards (eg MIPS.) > > On a MIPS board (carambola2) with 32MB of RAM, just scp'ing a kernel > into the rootfs on USB hangs the system. After doing some digging, I > found this: > > > INTERNAL: Al

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

2015-11-01 Thread Adrian Chadd
hiya jeff, this broke low-memory, no-swap boards (eg MIPS.) On a MIPS board (carambola2) with 32MB of RAM, just scp'ing a kernel into the rootfs on USB hangs the system. After doing some digging, I found this: INTERNAL: Allocating one item from buf free cache(0x83fea7e0) uma_zalloc_arg: Bucketz

svn commit: r290257 - head/sys/kern

2015-11-01 Thread Garrett Cooper
Author: ngie Date: Mon Nov 2 03:14:37 2015 New Revision: 290257 URL: https://svnweb.freebsd.org/changeset/base/290257 Log: Define `fhard` in pps_event(..) only when PPS_SYNC is defined to mute an -Wunused-but-set-variable warning Reported by: FreeBSD_HEAD_amd64_gcc4.9 jenkins job Spons

svn commit: r290256 - head/sys/kern

2015-11-01 Thread Garrett Cooper
Author: ngie Date: Mon Nov 2 01:47:26 2015 New Revision: 290256 URL: https://svnweb.freebsd.org/changeset/base/290256 Log: Define `compress` in `__elfN(coredump)` when #ifdef GZIO is true to mute an -Wunused-but-set-variable warning Reported by: FreeBSD_HEAD_amd64_gcc4.9 jenkins job Sp

svn commit: r290255 - in head: . lib/libc/tests/c063 lib/libc/tests/setjmp lib/libc/tests/string

2015-11-01 Thread Garrett Cooper
Mon Nov 2 01:23:04 2015(r290254) +++ head/ObsoleteFiles.inc Mon Nov 2 01:29:01 2015(r290255) @@ -38,6 +38,37 @@ # xargs -n1 | sort | uniq -d; # done +# 20151101: added missing _test suffix on multiple tests in lib/libc +OLD_FILES+=usr/tests/lib/libc/c063/faccessat

svn commit: r290254 - head/lib/libc/tests/tls_dso

2015-11-01 Thread Garrett Cooper
Author: ngie Date: Mon Nov 2 01:23:04 2015 New Revision: 290254 URL: https://svnweb.freebsd.org/changeset/base/290254 Log: Remove unused variable (SRCDIR) MFC after: 3 days Sponsored by: EMC / Isilon Storage Division Modified: head/lib/libc/tests/tls_dso/Makefile Modified: head/lib/l

svn commit: r290253 - head/lib/libc/rpc

2015-11-01 Thread Garrett Cooper
Author: ngie Date: Mon Nov 2 01:22:06 2015 New Revision: 290253 URL: https://svnweb.freebsd.org/changeset/base/290253 Log: Remove unnecessary `if (x)` tests before calling `free(x)`; free(3) already employs this check MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division Modi

svn commit: r290252 - in head: . etc/defaults etc/periodic/daily tools/build/mk

2015-11-01 Thread Garrett Cooper
-n1 | sort | uniq -d; # done +# 20151101: 430.status-rwho was renamed to 430.status-uptime +OLD_FILES+=etc/periodic/daily/430.status-rwho # 20151030: OpenSSL 1.0.2d import OLD_FILES+=usr/share/openssl/man/man3/CMS_set1_signer_certs.3.gz OLD_FILES+=usr/share/openssl/man/man3/EVP_PKEY_ctrl.3.gz

svn commit: r290251 - head/tools/regression/security/open_to_operation

2015-11-01 Thread Garrett Cooper
Author: ngie Date: Mon Nov 2 00:42:31 2015 New Revision: 290251 URL: https://svnweb.freebsd.org/changeset/base/290251 Log: Use nitems(x) instead of sizeof(x)/sizeof(x[0]) MFC after: 1 week Sponsored by: EMC / Isilon Storage Division Modified: head/tools/regression/security/open_to_ope

svn commit: r290250 - in head: share/man/man4 tools/build/mk

2015-11-01 Thread Garrett Cooper
Author: ngie Date: Mon Nov 2 00:39:28 2015 New Revision: 290250 URL: https://svnweb.freebsd.org/changeset/base/290250 Log: Conditionally install (if_)?(otus|rsu).4, otusfw.4, rsufw.4, and urtwn.4 if MK_USB != no Add the manpages to OptionalObsoleteFiles.inc As a side-effect, this al

svn commit: r290249 - head/sys/arm/broadcom/bcm2835

2015-11-01 Thread Oleksandr Tymoshenko
Author: gonzo Date: Sun Nov 1 23:50:07 2015 New Revision: 290249 URL: https://svnweb.freebsd.org/changeset/base/290249 Log: Add mailbox tag/structure for touchscreen buffer address property Modified: head/sys/arm/broadcom/bcm2835/bcm2835_mbox_prop.h Modified: head/sys/arm/broadcom/bcm2835/b

svn commit: r290247 - in stable/9: sbin/mount share/man/man5

2015-11-01 Thread Garrett Cooper
Author: ngie Date: Sun Nov 1 22:30:23 2015 New Revision: 290247 URL: https://svnweb.freebsd.org/changeset/base/290247 Log: MFstable/10 r290246: MFC r289229: Replace references to /dev/acd0 with /dev/cd0 atapicd(4) was replaced by cd(4) with the atacam work done by mav@ and then

svn commit: r290246 - in stable/10: sbin/mount share/man/man5

2015-11-01 Thread Garrett Cooper
Author: ngie Date: Sun Nov 1 22:27:40 2015 New Revision: 290246 URL: https://svnweb.freebsd.org/changeset/base/290246 Log: MFC r289229: Replace references to /dev/acd0 with /dev/cd0 atapicd(4) was replaced by cd(4) with the atacam work done by mav@ and then removed in r249083 X

svn commit: r290245 - in head/sys/contrib/vchiq/interface: vchi vchiq_arm

2015-11-01 Thread Oleksandr Tymoshenko
Author: gonzo Date: Sun Nov 1 22:17:39 2015 New Revision: 290245 URL: https://svnweb.freebsd.org/changeset/base/290245 Log: Synchronize with latest upstream VCHI code: - Add LIB_VERSION ioctl - Add CLOSE_DELIVERED ioctl - Bump code version Upstream version: 3782f2ad42c08f4d32f6413

svn commit: r290244 - head/bin/sh

2015-11-01 Thread Jilles Tjoelker
Author: jilles Date: Sun Nov 1 22:07:40 2015 New Revision: 290244 URL: https://svnweb.freebsd.org/changeset/base/290244 Log: sh: Avoid copying argv for simple commands. Add dummy entries before and after so arglist's array is directly usable as argv. Modified: head/bin/sh/eval.c hea

svn commit: r290243 - in head/sys/arm: arm include

2015-11-01 Thread Oleksandr Tymoshenko
Author: gonzo Date: Sun Nov 1 21:59:56 2015 New Revision: 290243 URL: https://svnweb.freebsd.org/changeset/base/290243 Log: Treat synchronous VFP exception just like aynchronous: as an FP exception, not as illegal instruction Modified: head/sys/arm/arm/vfp.c head/sys/arm/include/vfp.h M

svn commit: r290239 - head/sys/net

2015-11-01 Thread Alexander V. Chernikov
Author: melifaro Date: Sun Nov 1 19:59:04 2015 New Revision: 290239 URL: https://svnweb.freebsd.org/changeset/base/290239 Log: Fix lladdr change propagation for on vlans on top of it. Fix lladdr update when setting mac address manually. Fix lladdr_event for slave ports addition. MFC af

svn commit: r290238 - head/sys/dev/drm2/i915

2015-11-01 Thread Jean-Sébastien Pédron
Author: dumbbell Date: Sun Nov 1 19:55:32 2015 New Revision: 290238 URL: https://svnweb.freebsd.org/changeset/base/290238 Log: drm/i915: Reduce diff with Linux 3.8 There is no functional change. The goal is to ease the future update to Linux 3.8's i915 driver. MFC after:2 months

Re: svn commit: r289759 - in head/sys/arm: arm include

2015-11-01 Thread Konstantin Belousov
On Sun, Nov 01, 2015 at 09:11:51AM -0700, Ian Lepore wrote: > It's almost certainly not related to sysinit ordering. This exception > is happening during mmc probing after interrupts are enabled. > > It appears that the problem is the faulting code is running on one of > the very early pre-alloca

svn commit: r290236 - head/sbin/pfctl

2015-11-01 Thread Kristof Provost
Author: kp Date: Sun Nov 1 17:20:17 2015 New Revision: 290236 URL: https://svnweb.freebsd.org/changeset/base/290236 Log: pfctl: Fix uninitialised veriable In pfctl_set_debug() we used 'level' without ever initialising it. We correctly parsed the option, but them failed to actually assign

svn commit: r290234 - head/share/misc

2015-11-01 Thread Michal Meloun
Author: mmel Date: Sun Nov 1 16:54:55 2015 New Revision: 290234 URL: https://svnweb.freebsd.org/changeset/base/290234 Log: Install myself as src committer. Approved by: kib (mentor) > Description of fields to fill in above: 76 columns --| > PR:

Re: svn commit: r289759 - in head/sys/arm: arm include

2015-11-01 Thread Ian Lepore
On Sun, 2015-11-01 at 07:01 -0600, Jason Harmening wrote: > On Sat, Oct 31, 2015 at 4:55 AM, Jason Harmening < > jason.harmen...@gmail.com> > wrote: > > > > > > > On 10/31/15 03:21, Ganbold Tsagaankhuu wrote: > > > On Fri, Oct 23, 2015 at 12:38 AM, Jason A. Harmening < > > > j...@freebsd.org> >

Re: svn commit: r289759 - in head/sys/arm: arm include

2015-11-01 Thread Jason Harmening
On Sat, Oct 31, 2015 at 4:55 AM, Jason Harmening wrote: > > > On 10/31/15 03:21, Ganbold Tsagaankhuu wrote: > > On Fri, Oct 23, 2015 at 12:38 AM, Jason A. Harmening > > wrote: > > > >> Author: jah > >> Date: Thu Oct 22 16:38:01 2015 > >> New Revision: 289759 > >> URL: https://svnweb.freebsd.org/

svn commit: r290232 - head/lib/libc/stdio

2015-11-01 Thread Andrey A. Chernov
Author: ache Date: Sun Nov 1 08:40:15 2015 New Revision: 290232 URL: https://svnweb.freebsd.org/changeset/base/290232 Log: Microoptimize. Modified: head/lib/libc/stdio/ftell.c Modified: head/lib/libc/stdio/ftell.c =