Re: svn commit: r324620 - head/sys/fs/fuse

2017-10-14 Thread Stefan Esser
Am 14.10.17 um 21:02 schrieb Fedor Uporov: > Author: fsu > Date: Sat Oct 14 19:02:52 2017 > New Revision: 324620 > URL: https://svnweb.freebsd.org/changeset/base/324620 > > Log: > Add extended attributes support to fuse kernel module. > > Author: kem > Reviewed by:cem, pfg

Re: svn commit: r324541 - in head: share/man/man9 sys/kern sys/sys

2017-10-14 Thread Matt Joras
On 10/14/2017 11:03, Mark Johnston wrote: > TAILQ_FOREACH_SAFE just fetches the next element at the beginning of > each loop iteration rather than at the end, same as the current > implementation of clear_unrhdr() does. There's no change to the code > generated by clang when I replace your loop

svn commit: r324622 - head/include

2017-10-14 Thread Cy Schubert
Author: cy Date: Sun Oct 15 02:40:13 2017 New Revision: 324622 URL: https://svnweb.freebsd.org/changeset/base/324622 Log: Sync (make same) the offsetof macro definition in include/ with the definition of the same in sys/sys/. The problem was discovered while working on implementing a new

Re: svn commit: r324620 - head/sys/fs/fuse

2017-10-14 Thread Alan Somers
On Sat, Oct 14, 2017 at 1:02 PM, Fedor Uporov wrote: > Author: fsu > Date: Sat Oct 14 19:02:52 2017 > New Revision: 324620 > URL: https://svnweb.freebsd.org/changeset/base/324620 > > Log: > Add extended attributes support to fuse kernel module. > > Author: kem >

svn commit: r324621 - head/sys/dev/mlx4/mlx4_en

2017-10-14 Thread Ryan Libby
Author: rlibby Date: Sat Oct 14 23:25:44 2017 New Revision: 324621 URL: https://svnweb.freebsd.org/changeset/base/324621 Log: mlx4: use enum constants instead of const vars for case exprs Follow up from r324201 to fix compilation with gcc, which complains about non-ICE case expressions.

svn commit: r324620 - head/sys/fs/fuse

2017-10-14 Thread Fedor Uporov
Author: fsu Date: Sat Oct 14 19:02:52 2017 New Revision: 324620 URL: https://svnweb.freebsd.org/changeset/base/324620 Log: Add extended attributes support to fuse kernel module. Author: kem Reviewed by:cem, pfg (mentor) Approved by:pfg (mentor) MFC after: 2 weeks

svn commit: r324619 - in head/usr.bin/procstat: . tests

2017-10-14 Thread Brooks Davis
Author: brooks Date: Sat Oct 14 18:38:36 2017 New Revision: 324619 URL: https://svnweb.freebsd.org/changeset/base/324619 Log: Switch procstat from subcommand flags to verbs - Use an enumerated value instead of separate flags for commands - Look for a verb if no command flag is set -

Re: svn commit: r324541 - in head: share/man/man9 sys/kern sys/sys

2017-10-14 Thread Mark Johnston
On Fri, Oct 13, 2017 at 10:36:26PM -0700, Matt Joras wrote: > On 10/13/2017 22:12, Ngie Cooper (yaneurabeya) wrote: > >> Modified: head/sys/kern/subr_unit.c > >> == > >> --- head/sys/kern/subr_unit.c Wed Oct 11

svn commit: r324618 - stable/11/sys/kern

2017-10-14 Thread Mark Johnston
Author: markj Date: Sat Oct 14 17:51:25 2017 New Revision: 324618 URL: https://svnweb.freebsd.org/changeset/base/324618 Log: MFC r324146: Have uiomove_object_page() keep accessed pages in the active queue. Modified: stable/11/sys/kern/uipc_shm.c Directory Properties: stable/11/ (props

svn commit: r324617 - stable/10/lib/libc/gen

2017-10-14 Thread Brooks Davis
Author: brooks Date: Sat Oct 14 16:49:39 2017 New Revision: 324617 URL: https://svnweb.freebsd.org/changeset/base/324617 Log: MFC r324243: Remove an unneeded and incorrect memset(). On Variant I TLS architectures (aarch64, arm, mips, powerpc, and riscv) the __libc_allocate_tls

svn commit: r324616 - stable/11/lib/libc/gen

2017-10-14 Thread Brooks Davis
Author: brooks Date: Sat Oct 14 16:23:25 2017 New Revision: 324616 URL: https://svnweb.freebsd.org/changeset/base/324616 Log: MFC r324243: Remove an unneeded and incorrect memset(). On Variant I TLS architectures (aarch64, arm, mips, powerpc, and riscv) the __libc_allocate_tls

Re: svn commit: r324609 - head/sys/sys

2017-10-14 Thread Mateusz Guzik
On Sat, Oct 14, 2017 at 11:23 AM, Svatopluk Kraus wrote: > On Sat, Oct 14, 2017 at 2:48 AM, Mateusz Guzik wrote: > > Justification for the change was provided in the commit message: it makes > > .text smaller on amd64 and probably all architectures. > > > >

svn commit: r324615 - head/sys/netinet

2017-10-14 Thread Michael Tuexen
Author: tuexen Date: Sat Oct 14 10:02:59 2017 New Revision: 324615 URL: https://svnweb.freebsd.org/changeset/base/324615 Log: Code cleanup, not functional change. This avoids taking a pointer of a packed structure which allows simpler compilation of the userland stack. MFC after:

Re: svn commit: r324609 - head/sys/sys

2017-10-14 Thread Svatopluk Kraus
On Sat, Oct 14, 2017 at 2:48 AM, Mateusz Guzik wrote: > On Sat, Oct 14, 2017 at 2:30 AM, Ian Lepore wrote: >> >> On Fri, 2017-10-13 at 23:38 +0200, Svatopluk Kraus wrote: >> > MTX_UNOWNED is a flag. You did not change its value from 4 to 0, you >> > removed

Re: svn commit: r324541 - in head: share/man/man9 sys/kern sys/sys

2017-10-14 Thread Matt Joras
On 10/13/2017 22:12, Ngie Cooper (yaneurabeya) wrote: >> Modified: head/sys/kern/subr_unit.c >> == >> --- head/sys/kern/subr_unit.cWed Oct 11 20:36:22 2017 >> (r324540) >> +++ head/sys/kern/subr_unit.c