Re: svn commit: r285664 - in head/sys: kern sys

2015-07-19 Thread Bruce Evans
On Sat, 18 Jul 2015, Mark Johnston wrote: On Sat, Jul 18, 2015 at 08:55:07PM +1000, Bruce Evans wrote: On Sat, 18 Jul 2015, Mark Johnston wrote: Log: Pass the lock object to lockstat_nsecs() and return immediately if LO_NOPROFILE is set. Some timecounter handlers acquire a spin mutex, and

svn commit: r285685 - in head: sys/compat/linprocfs sys/compat/linsysfs sys/kern sys/sys usr.sbin/jail

2015-07-19 Thread Marcelo Araujo
Author: araujo (ports committer) Date: Sun Jul 19 08:52:35 2015 New Revision: 285685 URL: https://svnweb.freebsd.org/changeset/base/285685 Log: Add support to the jail framework to be able to mount linsysfs(5) and linprocfs(5). Differential Revision:D2846 Submitted by:

Re: svn commit: r285627 - in head/sys: arm/arm arm/at91 arm/cavium/cns11xx arm/samsung/s3c2xx0 arm/xscale/i80321 arm/xscale/i8134x arm/xscale/ixp425 arm/xscale/pxa arm64/arm64 ddb i386/i386 powerpc/bo

2015-07-19 Thread Bjoern A. Zeeb
On 16 Jul 2015, at 10:46 , Zbigniew Bodek z...@freebsd.org wrote: Author: zbb Date: Thu Jul 16 10:46:52 2015 New Revision: 285627 URL: https://svnweb.freebsd.org/changeset/base/285627 Log: Fix KSTACK_PAGES issue when the default value was changed in KERNCONF If KSTACK_PAGES was

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

2015-07-19 Thread Konstantin Belousov
Author: kib Date: Sun Jul 19 10:45:58 2015 New Revision: 285686 URL: https://svnweb.freebsd.org/changeset/base/285686 Log: Revert bit of the r285627, locore.s does not need include of opt_kstack_pages.h. The asm gets the right KSTACK_PAGES from the assym.s. Reported by: bz

Re: svn commit: r284162 - head/bin/ls

2015-07-19 Thread Jilles Tjoelker
On Fri, Jun 19, 2015 at 11:54:23PM +0200, Jilles Tjoelker wrote: On Mon, Jun 08, 2015 at 07:13:05PM +, Xin LI wrote: Author: delphij Date: Mon Jun 8 19:13:04 2015 New Revision: 284162 URL: https://svnweb.freebsd.org/changeset/base/284162 Log: It has been long time that when

svn commit: r285687 - head/sys/arm/include

2015-07-19 Thread Andrew Turner
Author: andrew Date: Sun Jul 19 13:10:47 2015 New Revision: 285687 URL: https://svnweb.freebsd.org/changeset/base/285687 Log: Sort the ARM atomic functions to be in alphabetical order. Sponsored by: ABT Systems Ltd Modified: head/sys/arm/include/atomic-v4.h

svn commit: r285688 - head

2015-07-19 Thread Mark Murray
Author: markm Date: Sun Jul 19 14:34:35 2015 New Revision: 285688 URL: https://svnweb.freebsd.org/changeset/base/285688 Log: Clean up some trailing whitespace. Modified: head/UPDATING Modified: head/UPDATING == ---

Re: svn commit: r284959 - in head: . share/man/man4 share/man/man9 sys/conf sys/dev/glxsb sys/dev/hifn sys/dev/random sys/dev/rndtest sys/dev/safe sys/dev/syscons sys/dev/ubsec sys/dev/virtio/random s

2015-07-19 Thread Simon J. Gerraty
Mark R V Murray ma...@freebsd.org wrote: On Thu, Jul 02, 2015 at 11:36:27AM -0700, Simon J. Gerraty wrote: Sound like you just need to be able to select a single KLD at boot time? Mark, do you have an estimate of when loadable modules will be supported again? We've been holding off sync'ing

svn commit: r285707 - in head: share/man/man4 sys/dev/proto

2015-07-19 Thread Marcel Moolenaar
Author: marcel Date: Sun Jul 19 23:37:45 2015 New Revision: 285707 URL: https://svnweb.freebsd.org/changeset/base/285707 Log: Check the hw.proto.attach environment variable for devices that proto(4) should attach to instead of the normal driver. Document the variable. Modified:

svn commit: r285708 - head/usr.bin/netstat

2015-07-19 Thread Mark Johnston
Author: markj Date: Mon Jul 20 02:38:51 2015 New Revision: 285708 URL: https://svnweb.freebsd.org/changeset/base/285708 Log: Fix some libxo format string errors in the pfkey stats code. PR: 201700 Modified: head/usr.bin/netstat/pfkey.c Modified: head/usr.bin/netstat/pfkey.c

svn commit: r285702 - in head: . lib/libarchive

2015-07-19 Thread Baptiste Daroussin
/ObsoleteFiles.inc Sun Jul 19 19:23:38 2015(r285701) +++ head/ObsoleteFiles.inc Sun Jul 19 21:31:52 2015(r285702) @@ -38,6 +38,8 @@ # xargs -n1 | sort | uniq -d; # done +# 20150719: Remove libarchive.pc +OLD_FILES+=usr/libdata/pkgconfig/libarchive.pc # 20150705: Rename DTrace

svn commit: r285705 - head/sys/kern

2015-07-19 Thread Kirk McKusick
Author: mckusick Date: Sun Jul 19 22:25:16 2015 New Revision: 285705 URL: https://svnweb.freebsd.org/changeset/base/285705 Log: Restructure code for readability improvement. No functional change. Reviewed by: kib Modified: head/sys/kern/kern_intr.c Modified: head/sys/kern/kern_intr.c

svn commit: r285704 - in head: cddl/contrib/opensolaris/cmd/lockstat sys/kern sys/sys

2015-07-19 Thread Mark Johnston
Author: markj Date: Sun Jul 19 22:24:33 2015 New Revision: 285704 URL: https://svnweb.freebsd.org/changeset/base/285704 Log: Consistently use a reader/writer flag for lockstat probes in rwlock(9) and sx(9), rather than using the probe function name to determine whether a given lock is a

svn commit: r285706 - head/sys/kern

2015-07-19 Thread Mark Johnston
Author: markj Date: Sun Jul 19 22:26:02 2015 New Revision: 285706 URL: https://svnweb.freebsd.org/changeset/base/285706 Log: Don't increment the spin count until after the first attempt to acquire a rwlock read lock. Otherwise the lockstat:::rw-spin probe will fire spuriously. MFC

Re: svn commit: r284198 - head/bin/ls

2015-07-19 Thread Craig Rodrigues
On Sat, Jun 13, 2015 at 9:29 PM, Steve Kargl s...@troutmask.apl.washington.edu wrote: On Sat, Jun 13, 2015 at 05:40:59PM -0700, Craig Rodrigues wrote: On Sat, Jun 13, 2015 at 5:26 PM, Steve Kargl s...@troutmask.apl.washington.edu wrote: Given the horrid state of the manpages, which I

svn commit: r285703 - in head/sys: amd64/conf arm/conf cddl/dev/lockstat cddl/dev/sdt conf i386/conf kern modules/dtrace modules/dtrace/dtraceall modules/dtrace/lockstat powerpc/conf sys

2015-07-19 Thread Mark Johnston
Author: markj Date: Sun Jul 19 22:14:09 2015 New Revision: 285703 URL: https://svnweb.freebsd.org/changeset/base/285703 Log: Implement the lockstat provider using SDT(9) instead of the custom provider in lockstat.ko. This means that lockstat probes now have typed arguments and will utilize

Re: svn commit: r284959 - in head: . share/man/man4 share/man/man9 sys/conf sys/dev/glxsb sys/dev/hifn sys/dev/random sys/dev/rndtest sys/dev/safe sys/dev/syscons sys/dev/ubsec sys/dev/virtio/random s

2015-07-19 Thread Simon J. Gerraty
Mark, do you have an estimate of when loadable modules will be supported again? About a week, I’d say. Thanks! Will keep an eye out. ___ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe,

svn commit: r285700 - head/sys/dev/random

2015-07-19 Thread Mark Murray
Author: markm Date: Sun Jul 19 18:07:35 2015 New Revision: 285700 URL: https://svnweb.freebsd.org/changeset/base/285700 Log: Fix some untidy logic. I committed the wrong local fix; please pass the pointy hat. Approved by:so (/dev/random blanket) Modified:

svn commit: r285698 - head/sys/dev/netmap

2015-07-19 Thread Luigi Rizzo
Author: luigi Date: Sun Jul 19 18:06:30 2015 New Revision: 285698 URL: https://svnweb.freebsd.org/changeset/base/285698 Log: properly destroy persistent vale ports Modified: head/sys/dev/netmap/netmap_vale.c Modified: head/sys/dev/netmap/netmap_vale.c

svn commit: r285699 - head/sys/dev/netmap

2015-07-19 Thread Luigi Rizzo
Author: luigi Date: Sun Jul 19 18:07:25 2015 New Revision: 285699 URL: https://svnweb.freebsd.org/changeset/base/285699 Log: add a use count so the netmap module cannot be unloaded while in use. Modified: head/sys/dev/netmap/netmap.c head/sys/dev/netmap/netmap_freebsd.c

svn commit: r285695 - head/sys/dev/netmap

2015-07-19 Thread Luigi Rizzo
Author: luigi Date: Sun Jul 19 17:54:42 2015 New Revision: 285695 URL: https://svnweb.freebsd.org/changeset/base/285695 Log: small documentation update Modified: head/sys/dev/netmap/netmap_kern.h Modified: head/sys/dev/netmap/netmap_kern.h

svn commit: r285697 - head/sys/dev/netmap

2015-07-19 Thread Luigi Rizzo
Author: luigi Date: Sun Jul 19 18:05:49 2015 New Revision: 285697 URL: https://svnweb.freebsd.org/changeset/base/285697 Log: do not free NULL if pipe allocation fails Modified: head/sys/dev/netmap/netmap_pipe.c Modified: head/sys/dev/netmap/netmap_pipe.c

svn commit: r285690 - head/sys/dev/random

2015-07-19 Thread Mark Murray
Author: markm Date: Sun Jul 19 16:05:23 2015 New Revision: 285690 URL: https://svnweb.freebsd.org/changeset/base/285690 Log: Optimise the buffer-size calculation. It was possible to get one block too many. Approved by: so (/dev/random blanket) Modified: head/sys/dev/random/randomdev.c

svn commit: r285692 - head/sys/dev/random

2015-07-19 Thread Mark Murray
Author: markm Date: Sun Jul 19 16:05:30 2015 New Revision: 285692 URL: https://svnweb.freebsd.org/changeset/base/285692 Log: Fix the read blocking so that it is interruptable and slow down the rate of console warning spamming while blocked. Approved by: so (/dev/random blanket)

svn commit: r285693 - head/sys/dev/random

2015-07-19 Thread Mark Murray
Author: markm Date: Sun Jul 19 16:05:34 2015 New Revision: 285693 URL: https://svnweb.freebsd.org/changeset/base/285693 Log: Remove out-of-date comments. Approved by:so (/dev/random blanket) Modified: head/sys/dev/random/fortuna.c head/sys/dev/random/yarrow.c Modified:

svn commit: r285691 - head/sys/conf

2015-07-19 Thread Mark Murray
Author: markm Date: Sun Jul 19 16:05:26 2015 New Revision: 285691 URL: https://svnweb.freebsd.org/changeset/base/285691 Log: Clarify the intent of the RANDOM_* options. Approved by: so (/dev/random blanket) Modified: head/sys/conf/NOTES Modified: head/sys/conf/NOTES

Re: svn commit: r285692 - head/sys/dev/random

2015-07-19 Thread Konstantin Belousov
On Sun, Jul 19, 2015 at 04:05:31PM +, Mark Murray wrote: Author: markm Date: Sun Jul 19 16:05:30 2015 New Revision: 285692 URL: https://svnweb.freebsd.org/changeset/base/285692 Log: Fix the read blocking so that it is interruptable and slow down the rate of console warning spamming

svn commit: r285696 - head/sys/dev/netmap

2015-07-19 Thread Luigi Rizzo
Author: luigi Date: Sun Jul 19 18:04:51 2015 New Revision: 285696 URL: https://svnweb.freebsd.org/changeset/base/285696 Log: release a reference when stopping a monitor Modified: head/sys/dev/netmap/netmap_monitor.c Modified: head/sys/dev/netmap/netmap_monitor.c

svn commit: r285701 - head/usr.sbin/ntp

2015-07-19 Thread Xin LI
Author: delphij Date: Sun Jul 19 19:23:38 2015 New Revision: 285701 URL: https://svnweb.freebsd.org/changeset/base/285701 Log: Use fixed date/time (the time choosen was the time the import was done on -HEAD) in libntp so we can make reproducible build. PR: bin/201661 Reviewed

Re: svn commit: r284959 - in head: . share/man/man4 share/man/man9 sys/conf sys/dev/glxsb sys/dev/hifn sys/dev/random sys/dev/rndtest sys/dev/safe sys/dev/syscons sys/dev/ubsec sys/dev/virtio/random s

2015-07-19 Thread Mark R V Murray
On 19 Jul 2015, at 20:40, Simon J. Gerraty s...@juniper.net wrote: Mark R V Murray ma...@freebsd.org wrote: On Thu, Jul 02, 2015 at 11:36:27AM -0700, Simon J. Gerraty wrote: Sound like you just need to be able to select a single KLD at boot time? Mark, do you have an estimate of when

svn commit: r285689 - head/sys/arm/include

2015-07-19 Thread Andrew Turner
Author: andrew Date: Sun Jul 19 15:44:51 2015 New Revision: 285689 URL: https://svnweb.freebsd.org/changeset/base/285689 Log: Clean up the style of the armv6 atomic code. Sponsored by: ABT Systems Ltd Modified: head/sys/arm/include/atomic-v6.h Modified: head/sys/arm/include/atomic-v6.h

svn commit: r285694 - head/sys/arm/include

2015-07-19 Thread Andrew Turner
Author: andrew Date: Sun Jul 19 16:55:47 2015 New Revision: 285694 URL: https://svnweb.freebsd.org/changeset/base/285694 Log: Fix atomic_store_64, it should write the value passed in, not the value read by the load. Pointy Hat: andrew Modified: head/sys/arm/include/atomic-v6.h

Re: svn commit: r285692 - head/sys/dev/random

2015-07-19 Thread Mark R V Murray
On 19 Jul 2015, at 18:02, Konstantin Belousov kostik...@gmail.com wrote: -printf(random: %s unblock wait\n, __func__); +/* Only bother the console every 10 seconds or so */ +if (spamcount == 0) +printf(random: %s unblock wait\n,

svn commit: r285709 - head/sys/sys

2015-07-19 Thread Mark Johnston
Author: markj Date: Mon Jul 20 04:41:25 2015 New Revision: 285709 URL: https://svnweb.freebsd.org/changeset/base/285709 Log: Declare lockstat_enabled even when KDTRACE_HOOKS is not defined. Reported by: bz X-MFC-With: r285704 Modified: head/sys/sys/lockstat.h Modified:

Re: svn commit: r285704 - in head: cddl/contrib/opensolaris/cmd/lockstat sys/kern sys/sys

2015-07-19 Thread Bjoern A. Zeeb
On 19 Jul 2015, at 22:24 , Mark Johnston ma...@freebsd.org wrote: Author: markj Date: Sun Jul 19 22:24:33 2015 New Revision: 285704 URL: https://svnweb.freebsd.org/changeset/base/285704 Log: Consistently use a reader/writer flag for lockstat probes in rwlock(9) and sx(9), rather

Re: svn commit: r285704 - in head: cddl/contrib/opensolaris/cmd/lockstat sys/kern sys/sys

2015-07-19 Thread Mark Johnston
On Mon, Jul 20, 2015 at 03:55:55AM +, Bjoern A. Zeeb wrote: On 19 Jul 2015, at 22:24 , Mark Johnston ma...@freebsd.org wrote: Author: markj Date: Sun Jul 19 22:24:33 2015 New Revision: 285704 URL: https://svnweb.freebsd.org/changeset/base/285704 Log: Consistently use a