Re: svn commit: r297201 - in head: share/man/man4 sys/dev/filemon

2016-03-22 Thread Bryan Drewery
> On Mar 22, 2016, at 20:18, Conrad Meyer wrote: > >> On Tue, Mar 22, 2016 at 7:46 PM, Benjamin Kaduk wrote: >>> On Tue, Mar 22, 2016 at 9:11 PM, Bryan Drewery wrote: >>> >>> The manpage for close(2) does document some errors, one

svn commit: r297205 - in head: include usr.sbin/uathload

2016-03-22 Thread Warner Losh
Author: imp Date: Wed Mar 23 04:18:57 2016 New Revision: 297205 URL: https://svnweb.freebsd.org/changeset/base/297205 Log: Implement suggestion by jhb@ to have _PATH_FIRMWARE instead of hard coding it to be "/usr/share/firmware". Modified: head/include/paths.h

Re: svn commit: r297201 - in head: share/man/man4 sys/dev/filemon

2016-03-22 Thread Conrad Meyer
On Tue, Mar 22, 2016 at 7:46 PM, Benjamin Kaduk wrote: > On Tue, Mar 22, 2016 at 9:11 PM, Bryan Drewery wrote: >> >> The manpage for close(2) does document some errors, one being ENOSPC. The >> close(2) behavior of returning write(2), really

Re: svn commit: r297201 - in head: share/man/man4 sys/dev/filemon

2016-03-22 Thread Benjamin Kaduk
On Tue, Mar 22, 2016 at 9:11 PM, Bryan Drewery wrote: > > > > The manpage for close(2) does document some errors, one being ENOSPC. The > close(2) behavior of returning write(2), really VOP_WRITE(9), errors though > is specific to filemon since all of the writes are hidden

Re: svn commit: r297201 - in head: share/man/man4 sys/dev/filemon

2016-03-22 Thread Bryan Drewery
> On Mar 22, 2016, at 17:41, Conrad Meyer wrote: > >> On Tue, Mar 22, 2016 at 3:41 PM, Bryan Drewery wrote: >> Author: bdrewery >> Date: Tue Mar 22 22:41:07 2016 >> New Revision: 297201 >> ... >> --- head/share/man/man4/filemon.4 Tue Mar 22

Re: svn commit: r297190 - head/sys/kern

2016-03-22 Thread Warner Losh
On Tue, Mar 22, 2016 at 7:50 PM, Ian Lepore wrote: > On Tue, 2016-03-22 at 19:28 -0600, Warner Losh wrote: > > On Tue, Mar 22, 2016 at 7:13 PM, Rick Macklem > > wrote: > > > > > Ian Lepore wrote: > > > > On Tue, 2016-03-22 at 13:46 +, Edward Tomasz

Re: svn commit: r297190 - head/sys/kern

2016-03-22 Thread Ian Lepore
On Tue, 2016-03-22 at 19:28 -0600, Warner Losh wrote: > On Tue, Mar 22, 2016 at 7:13 PM, Rick Macklem > wrote: > > > Ian Lepore wrote: > > > On Tue, 2016-03-22 at 13:46 +, Edward Tomasz Napierala wrote: > > > > Author: trasz > > > > Date: Tue Mar 22 13:46:01 2016 > > >

Re: svn commit: r297193 - head/sys/netinet

2016-03-22 Thread Lawrence Stewart
On 03/23/16 10:59, Conrad Meyer wrote: > On Tue, Mar 22, 2016 at 8:55 AM, Jonathan T. Looney wrote: >> Author: jtl >> Date: Tue Mar 22 15:55:17 2016 >> New Revision: 297193 >> URL: https://svnweb.freebsd.org/changeset/base/297193 >> >> ... >> >> MFC after:2 weeks > > This

Re: svn commit: r297193 - head/sys/netinet

2016-03-22 Thread Jonathan T. Looney
On 3/22/16, 7:59 PM, "Conrad Meyer" wrote: >On Tue, Mar 22, 2016 at 8:55 AM, Jonathan T. Looney wrote: >> Author: jtl >> Date: Tue Mar 22 15:55:17 2016 >> New Revision: 297193 >> URL: https://svnweb.freebsd.org/changeset/base/297193 >> >> ... >> >> MFC

Re: svn commit: r297190 - head/sys/kern

2016-03-22 Thread Warner Losh
On Tue, Mar 22, 2016 at 7:13 PM, Rick Macklem wrote: > Ian Lepore wrote: > > On Tue, 2016-03-22 at 13:46 +, Edward Tomasz Napierala wrote: > > > Author: trasz > > > Date: Tue Mar 22 13:46:01 2016 > > > New Revision: 297190 > > > URL:

Re: svn commit: r297190 - head/sys/kern

2016-03-22 Thread Rick Macklem
Ian Lepore wrote: > On Tue, 2016-03-22 at 13:46 +, Edward Tomasz Napierala wrote: > > Author: trasz > > Date: Tue Mar 22 13:46:01 2016 > > New Revision: 297190 > > URL: https://svnweb.freebsd.org/changeset/base/297190 > > > > Log: > > Wait for root mount tokens before showing the root mount

Re: svn commit: r297201 - in head: share/man/man4 sys/dev/filemon

2016-03-22 Thread Conrad Meyer
On Tue, Mar 22, 2016 at 3:41 PM, Bryan Drewery wrote: > Author: bdrewery > Date: Tue Mar 22 22:41:07 2016 > New Revision: 297201 > ... > --- head/share/man/man4/filemon.4 Tue Mar 22 22:41:03 2016 > (r297200) > +++ head/share/man/man4/filemon.4 Tue Mar 22

Re: svn commit: r297193 - head/sys/netinet

2016-03-22 Thread Conrad Meyer
On Tue, Mar 22, 2016 at 8:55 AM, Jonathan T. Looney wrote: > Author: jtl > Date: Tue Mar 22 15:55:17 2016 > New Revision: 297193 > URL: https://svnweb.freebsd.org/changeset/base/297193 > > ... > > MFC after:2 weeks This change seems like it would be ineligible for a MFC

svn commit: r297203 - in head: share/man/man4 sys/dev/filemon

2016-03-22 Thread Bryan Drewery
Author: bdrewery Date: Tue Mar 22 22:41:14 2016 New Revision: 297203 URL: https://svnweb.freebsd.org/changeset/base/297203 Log: Handle copyin failures. Skip the log entry as there is nothing good to write out. Don't fail the syscall though since it already succeeded. There's no reason

svn commit: r297200 - head/sys/dev/filemon

2016-03-22 Thread Bryan Drewery
Author: bdrewery Date: Tue Mar 22 22:41:03 2016 New Revision: 297200 URL: https://svnweb.freebsd.org/changeset/base/297200 Log: Follow-up r297156: Close the log in filemon_dtr rather than in the last reference. If the tracer has decided to the close the log then it should be fully

svn commit: r297201 - in head: share/man/man4 sys/dev/filemon

2016-03-22 Thread Bryan Drewery
Author: bdrewery Date: Tue Mar 22 22:41:07 2016 New Revision: 297201 URL: https://svnweb.freebsd.org/changeset/base/297201 Log: Return any log write failure encountered when closing the filemon fd. Discussed with: sjg, markj Reviewed by: sjg MFC after:2 weeks Sponsored by:

svn commit: r297202 - head/sys/dev/filemon

2016-03-22 Thread Bryan Drewery
Author: bdrewery Date: Tue Mar 22 22:41:10 2016 New Revision: 297202 URL: https://svnweb.freebsd.org/changeset/base/297202 Log: Remove unused done argument to copyinstr(9). MFC after:2 weeks Sponsored by: EMC / Isilon Storage Division Modified:

svn commit: r297199 - in head/sys: arm/at91 arm/cavium/cns11xx arm/mv arm/xscale/pxa dev/bhnd dev/bhnd/bhndb dev/gpio dev/iicbus dev/le dev/siba isa mips/atheros mips/beri mips/mips mips/rt305x pc9...

2016-03-22 Thread Justin Hibbits
Author: jhibbits Date: Tue Mar 22 22:25:08 2016 New Revision: 297199 URL: https://svnweb.freebsd.org/changeset/base/297199 Log: Fix the resource_list_print_type() calls to use uintmax_t. Missed a bunch from r297000. Modified: head/sys/arm/at91/at91.c head/sys/arm/at91/at91_pinctrl.c

svn commit: r297198 - head/sys/net80211

2016-03-22 Thread Adrian Chadd
Author: adrian Date: Tue Mar 22 22:07:14 2016 New Revision: 297198 URL: https://svnweb.freebsd.org/changeset/base/297198 Log: [net80211] add missing static declarations. Submitted by: Sascha Wildner Obtained from:dragonflybsd

svn commit: r297196 - head/share/man/man4

2016-03-22 Thread Bryan Drewery
Author: bdrewery Date: Tue Mar 22 19:39:50 2016 New Revision: 297196 URL: https://svnweb.freebsd.org/changeset/base/297196 Log: Spell out 'system calls'. MFC after:2 weeks Sponsored by: EMC / Isilon Storage Division Modified: head/share/man/man4/filemon.4 Modified:

Re: svn commit: r296921 - head/share/mk

2016-03-22 Thread Bryan Drewery
On 3/22/16 8:44 AM, Nikolai Lifanov wrote: > On 03/22/16 11:26, Bryan Drewery wrote: >> On 3/22/16 4:39 AM, Jean-Sébastien Pédron wrote: >>> Hi! >>> >>> I can't install world with a read-only /usr/obj anymore: >>> https://gist.github.com/dumbbell/fd5940d2603bbadb14f0 >>> >>> It looks related to

Re: svn commit: r297190 - head/sys/kern

2016-03-22 Thread Ian Lepore
On Tue, 2016-03-22 at 13:46 +, Edward Tomasz Napierala wrote: > Author: trasz > Date: Tue Mar 22 13:46:01 2016 > New Revision: 297190 > URL: https://svnweb.freebsd.org/changeset/base/297190 > > Log: > Wait for root mount tokens before showing the root mount prompt. > This restores the

Re: svn commit: r297185 - head/lib/libthr/thread

2016-03-22 Thread Konstantin Belousov
On Tue, Mar 22, 2016 at 09:25:48AM -0500, Benjamin Kaduk wrote: > On Tue, Mar 22, 2016 at 5:51 AM, Konstantin Belousov > wrote: > > > Author: kib > > Date: Tue Mar 22 10:51:42 2016 > > New Revision: 297185 > > URL: https://svnweb.freebsd.org/changeset/base/297185 > > > > Log: >

Re: svn commit: r296921 - head/share/mk

2016-03-22 Thread Bryan Drewery
On 3/22/16 4:39 AM, Jean-Sébastien Pédron wrote: > Hi! > > I can't install world with a read-only /usr/obj anymore: > https://gist.github.com/dumbbell/fd5940d2603bbadb14f0 > > It looks related to r296921 but I don't fully understand our build > system to be sure of that. > > What do you think?

svn commit: r297190 - head/sys/kern

2016-03-22 Thread Edward Tomasz Napierala
Author: trasz Date: Tue Mar 22 13:46:01 2016 New Revision: 297190 URL: https://svnweb.freebsd.org/changeset/base/297190 Log: Wait for root mount tokens before showing the root mount prompt. This restores the pre-r290196 behaviour, eliminating the need to manually press '.' a couple of times

svn commit: r297188 - in head: share/dtrace sys/kern sys/sys

2016-03-22 Thread George V. Neville-Neil
Author: gnn Date: Tue Mar 22 13:16:52 2016 New Revision: 297188 URL: https://svnweb.freebsd.org/changeset/base/297188 Log: Add an mbuf provider to DTrace. The mbuf provider is made up of a set of Statically Defined Tracepoints which help us look into mbufs as they are allocated and

svn commit: r297187 - head/sys/dev/e1000

2016-03-22 Thread Michael Tuexen
Author: tuexen Date: Tue Mar 22 12:40:09 2016 New Revision: 297187 URL: https://svnweb.freebsd.org/changeset/base/297187 Log: Support checksum offloading for TCP/IPV6 and UDP/IPV6. Support SCTP checksum offloading for SCTP/IPV6. Support SCTP checksum offloading on all controllers except

svn commit: r297186 - head/sys/conf

2016-03-22 Thread Bjoern A. Zeeb
Author: bz Date: Tue Mar 22 12:12:01 2016 New Revision: 297186 URL: https://svnweb.freebsd.org/changeset/base/297186 Log: Adding pci_host_generic unconditionally breaks ARM boards with a PCI(e) interface. Make it a device option to be included in the kernel configs that request this file.

Re: svn commit: r296921 - head/share/mk

2016-03-22 Thread Jean-Sébastien Pédron
Hi! I can't install world with a read-only /usr/obj anymore: https://gist.github.com/dumbbell/fd5940d2603bbadb14f0 It looks related to r296921 but I don't fully understand our build system to be sure of that. What do you think? -- Jean-Sébastien Pédron signature.asc Description: OpenPGP

svn commit: r297185 - head/lib/libthr/thread

2016-03-22 Thread Konstantin Belousov
Author: kib Date: Tue Mar 22 10:51:42 2016 New Revision: 297185 URL: https://svnweb.freebsd.org/changeset/base/297185 Log: Apparently there are some popular programs around which assume that it is safe to call pthread_mutex_init() on the same shared mutex several times. POSIX claims that

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

2016-03-22 Thread Michal Meloun
Dne 19.03.2016 v 0:55 Bjoern A. Zeeb napsal(a): > Author: bz > Date: Fri Mar 18 23:55:25 2016 > New Revision: 297047 > URL: https://svnweb.freebsd.org/changeset/base/297047 > > Log: > Allow pci_host_generic to be compiled into ARM kernels, used, e.g., in > simulators. > > Sponsored by:

svn commit: r297184 - head/sys/arm64/include

2016-03-22 Thread Andrew Turner
Author: andrew Date: Tue Mar 22 08:36:25 2016 New Revision: 297184 URL: https://svnweb.freebsd.org/changeset/base/297184 Log: Use the saved program state register to detect when an exception frame is from userpsace. Previously we could have triggered a panic by trying to jump to a kernel

svn commit: r297183 - head/tests/sys/geom/class

2016-03-22 Thread Garrett Cooper
Author: ngie Date: Tue Mar 22 08:12:45 2016 New Revision: 297183 URL: https://svnweb.freebsd.org/changeset/base/297183 Log: Use a SKIP testplan instead of bailing out if/when the tester isn't root, or the geom class can't be loaded cleanly [*] This makes sure that scenarios that are easy

svn commit: r297178 - head/sys/dev/hyperv/vmbus

2016-03-22 Thread Sepherosa Ziehau
Author: sephe Date: Tue Mar 22 06:23:09 2016 New Revision: 297178 URL: https://svnweb.freebsd.org/changeset/base/297178 Log: hyperv/vmbus: Remove NULL check for taskqueue_create_fast(M_WAITOK) Submitted by: Jun Su Reviewed by: Dexuan Cui , sephe MFC after:1 week Sponsored by:

svn commit: r297177 - head/sys/dev/hyperv/vmbus

2016-03-22 Thread Sepherosa Ziehau
Author: sephe Date: Tue Mar 22 06:13:27 2016 New Revision: 297177 URL: https://svnweb.freebsd.org/changeset/base/297177 Log: hyperv/vmbus: Use taskqueue_fast for non-performance critical messages This gets rid of the per-cpu SWIs. Submitted by: Jun Su Reviewed by: Dexuan Cui ,