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

2015-11-30 Thread Alexander Motin
Author: mav Date: Mon Nov 30 22:09:55 2015 New Revision: 291533 URL: https://svnweb.freebsd.org/changeset/base/291533 Log: Use SPI name for parallel SCSI. Modified: head/share/man/man4/ispfw.4 Modified: head/share/man/man4/ispfw.4

svn commit: r291525 - head/gnu/usr.bin/gdb/kgdb

2015-11-30 Thread John Baldwin
Author: jhb Date: Mon Nov 30 21:53:24 2015 New Revision: 291525 URL: https://svnweb.freebsd.org/changeset/base/291525 Log: Fix a double-semicolon typo in my libkvm changes. Submitted by: jmallett Modified: head/gnu/usr.bin/gdb/kgdb/trgt.c Modified: head/gnu/usr.bin/gdb/kgdb/trgt.c

svn commit: r291535 - head/usr.sbin/nfsuserd

2015-11-30 Thread Rick Macklem
Author: rmacklem Date: Mon Nov 30 22:16:30 2015 New Revision: 291535 URL: https://svnweb.freebsd.org/changeset/base/291535 Log: Document the new "-manage-gids" option for the nfsuserd daemon. This is a content change. Suggested by: jpaetzel Tested by:jpaetzel MFC after:2

svn commit: r291534 - head/usr.sbin/nfsuserd

2015-11-30 Thread Rick Macklem
Author: rmacklem Date: Mon Nov 30 22:11:34 2015 New Revision: 291534 URL: https://svnweb.freebsd.org/changeset/base/291534 Log: Add support for the "-manage-gids" option to the nfsuserd daemon. When this option is set, the NFS server uses the list of groups acquired via getgrouplist(3) for

svn commit: r291527 - in head/sys: fs/nfs fs/nfsserver nfs

2015-11-30 Thread Rick Macklem
Author: rmacklem Date: Mon Nov 30 21:54:27 2015 New Revision: 291527 URL: https://svnweb.freebsd.org/changeset/base/291527 Log: Add kernel support to the NFS server for the "-manage-gids" option that will be added to the nfsuserd daemon in a future commit. It modifies the cache used by

svn commit: r291479 - head/tools/bsdbox

2015-11-30 Thread Adrian Chadd
Author: adrian Date: Mon Nov 30 09:02:28 2015 New Revision: 291479 URL: https://svnweb.freebsd.org/changeset/base/291479 Log: add missing lib80211 include. Modified: head/tools/bsdbox/Makefile.net Modified: head/tools/bsdbox/Makefile.net

svn commit: r291485 - head/sys/arm64/arm64

2015-11-30 Thread Konstantin Belousov
Author: kib Date: Mon Nov 30 10:17:13 2015 New Revision: 291485 URL: https://svnweb.freebsd.org/changeset/base/291485 Log: Remove unneeded instructions. Reviewed by: andrew Sponsored by: The FreeBSD Foundation Modified: head/sys/arm64/arm64/support.S Modified:

svn commit: r291486 - head/sys/arm64/arm64

2015-11-30 Thread Konstantin Belousov
Author: kib Date: Mon Nov 30 10:18:15 2015 New Revision: 291486 URL: https://svnweb.freebsd.org/changeset/base/291486 Log: Shorten conditional branch code. Reviewed by: andrew Sponsored by: The FreeBSD Foundation Modified: head/sys/arm64/arm64/exception.S Modified:

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

2015-11-30 Thread Michal Meloun
Author: mmel Date: Mon Nov 30 17:09:25 2015 New Revision: 291492 URL: https://svnweb.freebsd.org/changeset/base/291492 Log: ARM: create new memory attribute for writethrough cacheable memory. - add new TEX class for WT cacheable memory - export new TEX class to kernel as VM_MEMATTR_WT

Re: svn commit: r291491 - head/rescue/rescue

2015-11-30 Thread Glen Barber
On Mon, Nov 30, 2015 at 04:34:13PM +, Garrett Cooper wrote: > Author: ngie > Date: Mon Nov 30 16:34:13 2015 > New Revision: 291491 > URL: https://svnweb.freebsd.org/changeset/base/291491 > > Log: > Fix the build after ifconfig was converted over to lib80211 in r291470 > Thank you. Glen

svn commit: r291491 - head/rescue/rescue

2015-11-30 Thread Garrett Cooper
Author: ngie Date: Mon Nov 30 16:34:13 2015 New Revision: 291491 URL: https://svnweb.freebsd.org/changeset/base/291491 Log: Fix the build after ifconfig was converted over to lib80211 in r291470 Reported by: jenkins, O. Hartmann Pointyhat to: adrian

svn commit: r291493 - head/sys/dev/wpi

2015-11-30 Thread Andriy Voskoboinyk
Author: avos Date: Mon Nov 30 17:16:51 2015 New Revision: 291493 URL: https://svnweb.freebsd.org/changeset/base/291493 Log: wpi: ignore ic_update_promisc() call when device is not running This change will fix kernel panic with uninitialized (zeroed) RXON structure. Tested with Intel

svn commit: r291495 - head/lib/clang

2015-11-30 Thread Bryan Drewery
Author: bdrewery Date: Mon Nov 30 19:16:58 2015 New Revision: 291495 URL: https://svnweb.freebsd.org/changeset/base/291495 Log: libllvmmirparser and libllvmlibdriver are only used in usr.bin/clang/llc and usr.bin/clang/llvm-ar, respectively, when MK_CLANG_EXTRAS is yes. MFC after:1

svn commit: r291494 - in head: lib/libpmc sys/dev/hwpmc sys/sys

2015-11-30 Thread Randall Stewart
Author: rrs Date: Mon Nov 30 17:35:49 2015 New Revision: 291494 URL: https://svnweb.freebsd.org/changeset/base/291494 Log: Add support for Intel Skylake and Intel Broadwell PMC's. The Broadwell PMC's have been tested on the Broadwell-Xeon with a hacked up version of pmcstudy -T. I still

Re: svn commit: r291491 - head/rescue/rescue

2015-11-30 Thread Adrian Chadd
Thanks! I dunno how I missed this :( -a On 30 November 2015 at 08:41, Glen Barber wrote: > On Mon, Nov 30, 2015 at 04:34:13PM +, Garrett Cooper wrote: >> Author: ngie >> Date: Mon Nov 30 16:34:13 2015 >> New Revision: 291491 >> URL:

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

2015-11-30 Thread Adrian Chadd
Hiya! What's the semantics of this? The mips24k/mips74k cores support a kind of write combining but only within a cache line - ie, it buffers writes to the same cache line, then the first non-cacheline access flushes it out. It's for things like accelerated framebuffer writes. Is this similar to

Re: svn commit: r290840 - head/etc

2015-11-30 Thread Bryan Drewery
On 11/15/2015 6:27 AM, Ian Lepore wrote: > On Sun, 2015-11-15 at 03:04 +, Garrett Cooper wrote: >> Author: ngie >> Date: Sun Nov 15 03:04:39 2015 >> New Revision: 290840 >> URL: https://svnweb.freebsd.org/changeset/base/290840 >> >> Log: >> Setup the symlink to /sys to mirror one's current

svn commit: r291554 - head/share/mk

2015-11-30 Thread Bryan Drewery
Author: bdrewery Date: Tue Dec 1 03:00:10 2015 New Revision: 291554 URL: https://svnweb.freebsd.org/changeset/base/291554 Log: FAST_DEPEND: Allow not using -MP by setting DEPEND_MP blank. -MP creates empty targets for all dependency files, which can be useful when a dependency is

svn commit: r291555 - head/share/mk

2015-11-30 Thread Bryan Drewery
Author: bdrewery Date: Tue Dec 1 03:09:54 2015 New Revision: 291555 URL: https://svnweb.freebsd.org/changeset/base/291555 Log: FAST_DEPEND: Workaround hacks in the wild that have '..' or '/' in OBJS. This is mostly working around the converts/iconv port having '../ces/file.o' in its

svn commit: r291545 - head/sys/cddl/contrib/opensolaris/uts/common/dtrace

2015-11-30 Thread Stanislav Sedov
Author: stas Date: Tue Dec 1 00:24:54 2015 New Revision: 291545 URL: https://svnweb.freebsd.org/changeset/base/291545 Log: Make the number of fasttrap probes and the size of the trace points hash table tunable via sysctl or kernel tunables. Illumos allows this parameters to be changed

svn commit: r291550 - head/lib/libc++

2015-11-30 Thread Bryan Drewery
Author: bdrewery Date: Tue Dec 1 01:22:10 2015 New Revision: 291550 URL: https://svnweb.freebsd.org/changeset/base/291550 Log: META MODE: Libc++ does in fact need Libcxxrt. There seems to be no cyclic dependency here. This partially reverts r283595 which had no explanation for the

svn commit: r291553 - head/sys/kern

2015-11-30 Thread Mateusz Guzik
Author: mjg Date: Tue Dec 1 02:48:42 2015 New Revision: 291553 URL: https://svnweb.freebsd.org/changeset/base/291553 Log: capsicum: plug spurious memset in __cap_rights_init Reviewed by: pjd Modified: head/sys/kern/subr_capability.c Modified: head/sys/kern/subr_capability.c

svn commit: r291537 - head/sys/sys

2015-11-30 Thread Rick Macklem
Author: rmacklem Date: Mon Nov 30 22:35:53 2015 New Revision: 291537 URL: https://svnweb.freebsd.org/changeset/base/291537 Log: Bump __FreeBSD_version since r291527 changes the interface between the nfsd.ko and nfscommon.ko modules. As such, both modules need to be upgraded to-gether.

svn commit: r291538 - head

2015-11-30 Thread Rick Macklem
ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20151130: + r291527 changed the internal interface between the nfsd.ko and + nfscommon.ko modules. As such, they must both be upgraded to-gether. + __FreeBSD_version has been bumped because of this. + 20151108: A

svn commit: r291536 - in head/etc: defaults rc.d

2015-11-30 Thread Rick Macklem
Author: rmacklem Date: Mon Nov 30 22:29:11 2015 New Revision: 291536 URL: https://svnweb.freebsd.org/changeset/base/291536 Log: Add support for the new "-manage-gids" option for the nfsuserd daemon to the rc scripts. With these changes, setting nfs_server_managegids="YES" in /etc/rc.conf

svn commit: r291539 - head/lib/clang

2015-11-30 Thread Bryan Drewery
Author: bdrewery Date: Mon Nov 30 22:53:41 2015 New Revision: 291539 URL: https://svnweb.freebsd.org/changeset/base/291539 Log: Only DIRDEPS_BUILD should trigger this logic. Missed in r290816. Sponsored by: EMC / Isilon Storage Division Modified: head/lib/clang/clang.build.mk

svn commit: r291544 - head/sys/fs/nfs

2015-11-30 Thread Rick Macklem
Author: rmacklem Date: Mon Nov 30 23:37:09 2015 New Revision: 291544 URL: https://svnweb.freebsd.org/changeset/base/291544 Log: Delete the TUNABLE_INT() line. It was in r291527 so that it could be MFC'd to stable/10 and still work. Modified: head/sys/fs/nfs/nfs_commonport.c Modified:

svn commit: r291540 - head/targets/pseudo/bootstrap-tools

2015-11-30 Thread Bryan Drewery
Author: bdrewery Date: Mon Nov 30 22:53:55 2015 New Revision: 291540 URL: https://svnweb.freebsd.org/changeset/base/291540 Log: META MODE: Fix bootstrap-tools after r291349. Now that OBJTOP is assumed to be proper, it needs to be overridden for the bootstrap-tools phase to ensure it is

svn commit: r291546 - head/targets/pseudo/bootstrap-tools

2015-11-30 Thread Bryan Drewery
Author: bdrewery Date: Tue Dec 1 00:32:09 2015 New Revision: 291546 URL: https://svnweb.freebsd.org/changeset/base/291546 Log: META MODE: For bootstrap-tools, don't let Makefile.inc1 build any of the toolchain. This change prevents building of [clang-]tblgen, which is unneeded due to

svn commit: r291558 - in head: bin/pkill bin/ps gnu/usr.bin/gdb/kgdb libexec/rpc.rstatd sbin/ddb sbin/dmesg sbin/ipf/ipf sbin/ipf/ipfs sbin/ipf/ipfstat sbin/ipf/ipftest sbin/ipf/ipmon sbin/ipf/ipna...

2015-11-30 Thread Bryan Drewery
Author: bdrewery Date: Tue Dec 1 05:18:48 2015 New Revision: 291558 URL: https://svnweb.freebsd.org/changeset/base/291558 Log: Update dependencies after r291406 added libelf to libkvm. Unfortunately filemon/meta mode tracks all indirect dependencies here since ld(1) is reading libelf

svn commit: r291563 - in head: cddl/lib/libzfs cddl/sbin/zfs cddl/sbin/zpool etc etc/newsyslog.conf.d gnu/lib/libssp gnu/usr.bin/diff gnu/usr.bin/dtc gnu/usr.bin/gperf gnu/usr.bin/grep lib/clang/li...

2015-11-30 Thread Bryan Drewery
Author: bdrewery Date: Tue Dec 1 05:23:19 2015 New Revision: 291563 URL: https://svnweb.freebsd.org/changeset/base/291563 Log: META MODE: Update dependencies with 'the-lot' and add missing directories. This is not properly respecting WITHOUT or ARCH dependencies in target/. Doing so

svn commit: r291559 - head/share/mk

2015-11-30 Thread Bryan Drewery
Author: bdrewery Date: Tue Dec 1 05:18:55 2015 New Revision: 291559 URL: https://svnweb.freebsd.org/changeset/base/291559 Log: META MODE: Don't trim out lib/clang/include dependency. Doing this causes more trouble than it is worth regarding cyclic dependencies. It should not be needed

svn commit: r291560 - head/lib/clang/include

2015-11-30 Thread Bryan Drewery
Author: bdrewery Date: Tue Dec 1 05:18:59 2015 New Revision: 291560 URL: https://svnweb.freebsd.org/changeset/base/291560 Log: META MODE: Fix rebuilding of lib/clang/include after clang-tblgen.host is staged. None of usr.bin/clang/clang-tblgen or its dependencies need

svn commit: r291561 - in head: lib/clang share/mk targets/pseudo/bootstrap-tools

2015-11-30 Thread Bryan Drewery
Author: bdrewery Date: Tue Dec 1 05:19:02 2015 New Revision: 291561 URL: https://svnweb.freebsd.org/changeset/base/291561 Log: META MODE: Rework [bootstrapped] tools PATH support. - Support more of the toolchain from TOOLSDIR. - This also improves 'make bootstrap-tools' to pass, for

svn commit: r291557 - in head: share/man/man4 sys/conf sys/dev/usb sys/dev/usb/net sys/modules/usb sys/modules/usb/ure

2015-11-30 Thread Kevin Lo
Author: kevlo Date: Tue Dec 1 05:12:13 2015 New Revision: 291557 URL: https://svnweb.freebsd.org/changeset/base/291557 Log: Add initial support for RTL8152 USB Fast Ethernet. RTL8152 supports IPv4/IPv6 checksum offloading and VLAN tag insertion/stripping. Since uether doesn't provide a

svn commit: r291562 - in head: cddl/usr.bin/ctfconvert cddl/usr.bin/ctfdump cddl/usr.bin/ctfmerge cddl/usr.sbin/dtrace targets/pseudo/userland/cddl

2015-11-30 Thread Bryan Drewery
Author: bdrewery Date: Tue Dec 1 05:22:10 2015 New Revision: 291562 URL: https://svnweb.freebsd.org/changeset/base/291562 Log: META MODE: Fix userland/cddl. MK_CTF controls whether ctfmerge is ran against the binaries, not whether CTF tools should be built. Sponsored by: EMC /

svn commit: r291567 - head/sys/contrib/dev/ath/ath_hal/ar9300

2015-11-30 Thread Adrian Chadd
Author: adrian Date: Tue Dec 1 06:11:09 2015 New Revision: 291567 URL: https://svnweb.freebsd.org/changeset/base/291567 Log: Adjust a comment; we now support these embedded boards! Modified: head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd_inc.h Modified:

svn commit: r291569 - head/sys/dev/sfxge

2015-11-30 Thread Andrew Rybchenko
Author: arybchik Date: Tue Dec 1 06:23:15 2015 New Revision: 291569 URL: https://svnweb.freebsd.org/changeset/base/291569 Log: sfxge: avoid TSO packets collapses if packet header uses 2 segments It is really observed in the case of VLAN over sfxge interface. Also this change makes total

svn commit: r291564 - head/share/mk

2015-11-30 Thread Bryan Drewery
Author: bdrewery Date: Tue Dec 1 05:29:30 2015 New Revision: 291564 URL: https://svnweb.freebsd.org/changeset/base/291564 Log: META MODE: Add some basic bootstrapping support for no Makefile.depend. This will not work for bootstrapping dependencies, it will only bootstrap the top-level

svn commit: r291566 - in head: . lib/libelf

2015-11-30 Thread Garrett Cooper
== --- head/ObsoleteFiles.inc Tue Dec 1 05:59:53 2015(r291565) +++ head/ObsoleteFiles.inc Tue Dec 1 06:09:22 2015(r291566) @@ -38,6 +38,8 @@ # xargs -n1 | sort | uniq -d; # done +# 20151130: libelf moved from /usr/lib to /lib (libkvm dependency in r291406) +OLD_FILES+=usr

Re: svn commit: r291565 - head/sys/net

2015-11-30 Thread Alexander V . Chernikov
Thanks, I missed that part :( 01.12.2015, 09:00, "Garrett Cooper" : > Author: ngie > Date: Tue Dec 1 05:59:53 2015 > New Revision: 291565 > URL: https://svnweb.freebsd.org/changeset/base/291565 > > Log: >   Fix LINT-NOIP kernels after r291467 > >   rn is only used if INET or

svn commit: r291565 - head/sys/net

2015-11-30 Thread Garrett Cooper
Author: ngie Date: Tue Dec 1 05:59:53 2015 New Revision: 291565 URL: https://svnweb.freebsd.org/changeset/base/291565 Log: Fix LINT-NOIP kernels after r291467 rn is only used if INET or INET6 are defined Sponsored by: EMC / Isilon Storage Division Modified: head/sys/net/route.c

svn commit: r291575 - head/tests/sys/mqueue

2015-11-30 Thread Garrett Cooper
Author: ngie Date: Tue Dec 1 07:52:41 2015 New Revision: 291575 URL: https://svnweb.freebsd.org/changeset/base/291575 Log: Disable mqueue test # 3 and # 4 until __mq_oshandle is properly publicized This will unbreak the test script and make things green again after r291440 Sponsored

svn commit: r291570 - head/sys/dev/sfxge

2015-11-30 Thread Andrew Rybchenko
Author: arybchik Date: Tue Dec 1 06:29:11 2015 New Revision: 291570 URL: https://svnweb.freebsd.org/changeset/base/291570 Log: sfxge: added setting TSO-related parameters Submitted by: Artem V. Andreev Sponsored by: Solarflare Communications, Inc. MFC after: 2 days

svn commit: r291568 - head/etc

2015-11-30 Thread Garrett Cooper
Author: ngie Date: Tue Dec 1 06:22:27 2015 New Revision: 291568 URL: https://svnweb.freebsd.org/changeset/base/291568 Log: Revert r290840 This request by the submitter was valid, but unfortunately there is a good deal of concern over breakage when DESTDIR != / or "", i.e. with release

Re: svn commit: r290840 - head/etc

2015-11-30 Thread NGie Cooper
> On Nov 30, 2015, at 13:01, Bryan Drewery wrote: … > I have concerns this may break the install image that re@ (or other > parties) produce as well since it may have a broken /sys link if not > built from /usr/src. > > Looking at the freebsd-update kernel I see >

svn commit: r291472 - head/sys/contrib/dev/ath/ath_hal/ar9300

2015-11-30 Thread Garrett Cooper
Author: ngie Date: Mon Nov 30 08:02:52 2015 New Revision: 291472 URL: https://svnweb.freebsd.org/changeset/base/291472 Log: Fix the build ichan is only used if AH_DEBUG_ALQ if defined Pointyhat to: adrian Modified: head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_radio.c Modified:

svn commit: r291481 - head/sys/compat/linuxkpi/common/include/linux

2015-11-30 Thread Hans Petter Selasky
Author: hselasky Date: Mon Nov 30 09:24:12 2015 New Revision: 291481 URL: https://svnweb.freebsd.org/changeset/base/291481 Log: Add more functions and types to the LinuxKPI. MFC after:1 week Sponsored by: Mellanox Technologies Modified:

svn commit: r291488 - head/sys/dev/sfxge

2015-11-30 Thread Andrew Rybchenko
Author: arybchik Date: Mon Nov 30 13:27:40 2015 New Revision: 291488 URL: https://svnweb.freebsd.org/changeset/base/291488 Log: sfxge: avoid TSO packets collapses bacause of not 2K aligned data Sponsored by: Solarflare Communications, Inc. MFC after: 2 days Differential