svn commit: r301717 - in head/sys: modules/tcp/fastpath netinet netinet/tcp_stacks netinet6

2016-06-08 Thread Andrey V. Elsukov
Author: ae Date: Thu Jun 9 05:48:34 2016 New Revision: 301717 URL: https://svnweb.freebsd.org/changeset/base/301717 Log: Cleanup unneded include "opt_ipfw.h". It was used for conditional build IPFIREWALL_FORWARD support. But IPFIREWALL_FORWARD option was removed a long time ago.

svn commit: r301716 - head/release

2016-06-08 Thread Colin Percival
Author: cperciva Date: Thu Jun 9 03:54:25 2016 New Revision: 301716 URL: https://svnweb.freebsd.org/changeset/base/301716 Log: Add 'env - PATH=$$PATH' to bsdec2-image-upload make command, in order to avoid environment pollution problems. That port uses but is not compatible with the

Re: svn commit: r301706 - head/sys/boot/efi

2016-06-08 Thread Warner Losh
> On Jun 8, 2016, at 7:23 PM, Andrew Turner wrote: > > Author: andrew > Date: Wed Jun 8 23:23:16 2016 > New Revision: 301706 > URL: https://svnweb.freebsd.org/changeset/base/301706 > > Log: > Also set -fshort-wchar on arm64, this fixes parsing strings from UEFI, > e.g.

Re: svn commit: r301714 - head/sys/boot/efi/libefi

2016-06-08 Thread Warner Losh
> On Jun 8, 2016, at 10:02 PM, Emmanuel Vadot wrote: > > Author: manu > Date: Thu Jun 9 02:02:50 2016 > New Revision: 301714 > URL: https://svnweb.freebsd.org/changeset/base/301714 > > Log: > Print a message when the efi disk isn't a logical partition. Why on earth would

svn commit: r301715 - head/usr.bin/truss

2016-06-08 Thread John Baldwin
Author: jhb Date: Thu Jun 9 02:21:07 2016 New Revision: 301715 URL: https://svnweb.freebsd.org/changeset/base/301715 Log: Add support for truss'ing Linux/x86_64 binaries under amd64. Prodding by: xmj Added: head/usr.bin/truss/amd64-linux.c (contents, props changed) Modified:

Re: svn commit: r301562 - head/sys/dev/acpica

2016-06-08 Thread John Baldwin
On 6/7/16 3:08 PM, Conrad E. Meyer wrote: > Author: cem > Date: Tue Jun 7 19:08:13 2016 > New Revision: 301562 > URL: https://svnweb.freebsd.org/changeset/base/301562 > > Log: > Fix a minor leak in ACPI thermal > > Introduced in r301518. > > Reported by:Coverity > CID:

svn commit: r301714 - head/sys/boot/efi/libefi

2016-06-08 Thread Emmanuel Vadot
Author: manu Date: Thu Jun 9 02:02:50 2016 New Revision: 301714 URL: https://svnweb.freebsd.org/changeset/base/301714 Log: Print a message when the efi disk isn't a logical partition. Approved by: andrew (mentor) Differential Revision:https://reviews.freebsd.org/D6782

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

2016-06-08 Thread Simon J. Gerraty
Author: sjg Date: Thu Jun 9 01:50:43 2016 New Revision: 301713 URL: https://svnweb.freebsd.org/changeset/base/301713 Log: Add a prototype for random_harvest_queue to dev/random/random_harvestq.h This fixes a warning that occurs in a number of files that use the random_harvest_queue

svn commit: r301712 - head/sys/dev/ioat

2016-06-08 Thread Conrad E. Meyer
Author: cem Date: Thu Jun 9 01:31:09 2016 New Revision: 301712 URL: https://svnweb.freebsd.org/changeset/base/301712 Log: ioat(4): Add ddb "show ioat " debugger command Sponsored by: EMC / Isilon Storage Division Modified: head/sys/dev/ioat/ioat.c Modified: head/sys/dev/ioat/ioat.c

svn commit: r301711 - in head: etc include lib/libc/gen share/man/man5

2016-06-08 Thread Mark Johnston
Author: markj Date: Thu Jun 9 01:28:44 2016 New Revision: 301711 URL: https://svnweb.freebsd.org/changeset/base/301711 Log: Implement an NSS backend for netgroups and add getnetgrent_r(3). This support appears to have been documented in nsswitch.conf(5) for some time. The implementation

svn commit: r301710 - head/lib/libc/gen

2016-06-08 Thread Mark Johnston
Author: markj Date: Thu Jun 9 01:11:48 2016 New Revision: 301710 URL: https://svnweb.freebsd.org/changeset/base/301710 Log: Fix an infinite loop in setnetgrent(3) with NIS netgroups. Handle an empty result from yp_match() by returning NULL, which is consistent with the handling of an

svn commit: r301709 - head/lib/libc/gen

2016-06-08 Thread Mark Johnston
Author: markj Date: Thu Jun 9 01:05:23 2016 New Revision: 301709 URL: https://svnweb.freebsd.org/changeset/base/301709 Log: Use a more common spelling for "(char *)0" in the getnetgrent man page. MFC after:3 days Modified: head/lib/libc/gen/getnetgrent.3 Modified:

svn commit: r301708 - head/lib/libc/net

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 23:30:13 2016 New Revision: 301708 URL: https://svnweb.freebsd.org/changeset/base/301708 Log: Revert r301707 getnetent_p doesn't return NULL like getnetent does. coccinelle got confused and I didn't verify that it worked before committing the change

svn commit: r301706 - head/sys/boot/efi

2016-06-08 Thread Andrew Turner
Author: andrew Date: Wed Jun 8 23:23:16 2016 New Revision: 301706 URL: https://svnweb.freebsd.org/changeset/base/301706 Log: Also set -fshort-wchar on arm64, this fixes parsing strings from UEFI, e.g. on the command line. Sponsored by: ABT Systems Ltd Modified:

svn commit: r301707 - head/lib/libc/net

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 23:23:19 2016 New Revision: 301707 URL: https://svnweb.freebsd.org/changeset/base/301707 Log: Use NULL instead of `0` in _ht_getnetbyname(..) - getnetent returns NULL on completion/error. - .h_aliases is NULL terminated. MFC after: 1 week Sponsored

svn commit: r301705 - head/contrib/tcpdump

2016-06-08 Thread Mariusz Zaborski
Author: oshogbo Date: Wed Jun 8 23:22:59 2016 New Revision: 301705 URL: https://svnweb.freebsd.org/changeset/base/301705 Log: The code responsible for opening and rotating pcap files is independent of Capser and should use openat(2) unconditionally on FreeBSD. openat(2) is mandatory when

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

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 23:17:30 2016 New Revision: 301704 URL: https://svnweb.freebsd.org/changeset/base/301704 Log: Test for strchr(3) returning NULL, not 0 MFC after: 3 days Reported by: coccinelle Sponsored by: EMC / Isilon Storage Division Modified:

svn commit: r301703 - head/sys/boot/efi/libefi

2016-06-08 Thread Andrew Turner
Author: andrew Date: Wed Jun 8 23:13:20 2016 New Revision: 301703 URL: https://svnweb.freebsd.org/changeset/base/301703 Log: Print the newline character along with the carriage return when TERM_EMU is disabled. Without this we print all lines over top of each other. Sponsored by: ABT

svn commit: r301702 - head/sys/boot/efi/libefi

2016-06-08 Thread Andrew Turner
Author: andrew Date: Wed Jun 8 22:36:55 2016 New Revision: 301702 URL: https://svnweb.freebsd.org/changeset/base/301702 Log: Allow libefi to be built with TERM_EMU undefined. There were a few places where we assumed TERM_EMU was defined but didn't check. Fix these by also including them

svn commit: r301701 - in head: contrib/tcpdump usr.sbin/tcpdump/tcpdump

2016-06-08 Thread Mariusz Zaborski
Author: oshogbo Date: Wed Jun 8 22:30:21 2016 New Revision: 301701 URL: https://svnweb.freebsd.org/changeset/base/301701 Log: Fix spelling of the casper introduced in the r296047. PR: 210031 Reported by: AllanJude, jmallett Modified: head/contrib/tcpdump/addrtoname.c

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

2016-06-08 Thread Andrew Turner
Author: andrew Date: Wed Jun 8 22:29:30 2016 New Revision: 301700 URL: https://svnweb.freebsd.org/changeset/base/301700 Log: Remove the ARMv4/ARMv5 userland atomic support from struct proc on armv6. Nothing should use this on armv6 as we use the atomic instructions added in ARMv6k.

svn commit: r301699 - stable/9/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 22:28:57 2016 New Revision: 301699 URL: https://svnweb.freebsd.org/changeset/base/301699 Log: MFstable/10 r301695: MFC r300870,r300884: r300870: Unbreak the zfs(4) build vm/vm_pageout.h grew a dependency on the bool typedef in r300865 arc.c

svn commit: r301698 - in head/sys: dev/bhnd dev/bhnd/bcma dev/bhnd/siba mips/broadcom

2016-06-08 Thread Landon J. Fuller
Author: landonf Date: Wed Jun 8 21:38:51 2016 New Revision: 301698 URL: https://svnweb.freebsd.org/changeset/base/301698 Log: bhnd(4): Fix mips/broadcom core matching and bus pass order. Changes: - Fixed incorrect MIPS74k vendor ID in the bhnd core descriptor tables - Fixed MIPS

svn commit: r301697 - in head/sys: dev/bhnd dev/bhnd/cores/chipc dev/bhnd/cores/pci dev/bhnd/cores/pcie2 dev/bhnd/siba mips/broadcom

2016-06-08 Thread Landon J. Fuller
Author: landonf Date: Wed Jun 8 21:31:33 2016 New Revision: 301697 URL: https://svnweb.freebsd.org/changeset/base/301697 Log: bhnd(4): Add a vendor parameter to BHND_DEVICE(), replacing vendor-specific BHND_*_DEVICE macros. Approved by: adrian (mentor) Differential Revision:

svn commit: r301696 - head/contrib/atf

2016-06-08 Thread Ed Schouten
Author: ed Date: Wed Jun 8 20:54:56 2016 New Revision: 301696 URL: https://svnweb.freebsd.org/changeset/base/301696 Log: Don't let ATF call basename() and dirname() in a non-standard way. POSIX basename() and dirname() are allowed to overwrite the input buffer. The advantage of

svn commit: r301695 - stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 20:47:25 2016 New Revision: 301695 URL: https://svnweb.freebsd.org/changeset/base/301695 Log: MFC r300870,r300884: r300870: Unbreak the zfs(4) build vm/vm_pageout.h grew a dependency on the bool typedef in r300865 arc.c didn't include

svn commit: r301694 - head/usr.sbin/bsdinstall/scripts

2016-06-08 Thread Andriy Voskoboinyk
Author: avos Date: Wed Jun 8 20:42:35 2016 New Revision: 301694 URL: https://svnweb.freebsd.org/changeset/base/301694 Log: bsdinstall: add country/regulatory domain configuration dialog. Allow to setup country and/or regulatory domain before scanning (since channel list is affected by

svn commit: r301693 - head/sys/dev/dwc

2016-06-08 Thread Jared McNeill
Author: jmcneill Date: Wed Jun 8 20:22:25 2016 New Revision: 301693 URL: https://svnweb.freebsd.org/changeset/base/301693 Log: Multicast filters on DWC_GMAC_ALT_DESC type implementations use a different hash register setup. In addition, strip trailing FCS in receive path. Reviewed by:

svn commit: r301692 - in head/sys/modules: bwn bwn_pci siba_bwn

2016-06-08 Thread Andriy Voskoboinyk
Author: avos Date: Wed Jun 8 20:01:10 2016 New Revision: 301692 URL: https://svnweb.freebsd.org/changeset/base/301692 Log: bwn, bwn_pci, siba_bwn: add missing opt_*.h dependencies. Modified: head/sys/modules/bwn/Makefile head/sys/modules/bwn_pci/Makefile

svn commit: r301691 - head/contrib/one-true-awk

2016-06-08 Thread Pedro F. Giffuni
Author: pfg Date: Wed Jun 8 19:39:44 2016 New Revision: 301691 URL: https://svnweb.freebsd.org/changeset/base/301691 Log: Revert r301689 - one-true-awk: Avoid a NULL dereference. I got this wrong and the coverity report doesn't match the NetBSD change, which was thought for a different

svn commit: r301690 - stable/9/usr.sbin/bsnmpd/tools/libbsnmptools

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 19:31:12 2016 New Revision: 301690 URL: https://svnweb.freebsd.org/changeset/base/301690 Log: MFstable/10 r301655: MFC r299766: Fix logically dead code pointed out by clang/Coverity parse_context, parse_user_security: test for validity of results

svn commit: r301689 - head/contrib/one-true-awk

2016-06-08 Thread Pedro F. Giffuni
Author: pfg Date: Wed Jun 8 19:24:48 2016 New Revision: 301689 URL: https://svnweb.freebsd.org/changeset/base/301689 Log: one-true-awk: Avoid a NULL dereference. CID: 270862 Obtained from:NetBSD (CVS Rev. 1.8) MFC after:2 weeks Modified:

Re: svn commit: r301681 - stable/9/sys/rpc

2016-06-08 Thread Ngie Cooper (yaneurabeya)
> On Jun 8, 2016, at 14:50, Cy Schubert wrote: > > In message <201606081823.u58inxvl053...@repo.freebsd.org>, Garrett Cooper > write > s: >> Author: ngie >> Date: Wed Jun 8 18:23:33 2016 >> New Revision: 301681 >> URL: https://svnweb.freebsd.org/changeset/base/301681

Re: svn commit: r301681 - stable/9/sys/rpc

2016-06-08 Thread Cy Schubert
In message <201606081823.u58inxvl053...@repo.freebsd.org>, Garrett Cooper write s: > Author: ngie > Date: Wed Jun 8 18:23:33 2016 > New Revision: 301681 > URL: https://svnweb.freebsd.org/changeset/base/301681 > > Log: > MFstable/10 r301680: > > MFC r300625: Why MFC to stable/10 and then

svn commit: r301687 - stable/10/lib/libc/rpc

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:46:10 2016 New Revision: 301687 URL: https://svnweb.freebsd.org/changeset/base/301687 Log: MFC r300624: Fix up r300385 I accidentally glossed over the fact that tmp is manipulated via strchr, so if we tried to free `tmp` after r300385, it would have

svn commit: r301688 - stable/9/lib/libc/rpc

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:47:00 2016 New Revision: 301688 URL: https://svnweb.freebsd.org/changeset/base/301688 Log: MFstable/10 r301687: MFC r300624: Fix up r300385 I accidentally glossed over the fact that tmp is manipulated via strchr, so if we tried to free `tmp`

svn commit: r301686 - stable/9/lib/libc/rpc

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:43:56 2016 New Revision: 301686 URL: https://svnweb.freebsd.org/changeset/base/301686 Log: MFstable/10 r301684: MFC r300385: Don't leak `tmp` if `p->nc_lookups` can't be malloced Modified: stable/9/lib/libc/rpc/getnetconfig.c Directory Properties:

svn commit: r301685 - stable/9/lib/libc/rpc

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:43:11 2016 New Revision: 301685 URL: https://svnweb.freebsd.org/changeset/base/301685 Log: MFstable/10 r301682: MFC r300386: Don't leak `handle` if svc_tp_create(..) succeeds and allocating a new struct xlist object fails CID: 978277 Modified:

svn commit: r301684 - stable/10/lib/libc/rpc

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:41:49 2016 New Revision: 301684 URL: https://svnweb.freebsd.org/changeset/base/301684 Log: MFC r300385: Don't leak `tmp` if `p->nc_lookups` can't be malloced Modified: stable/10/lib/libc/rpc/getnetconfig.c Directory Properties: stable/10/ (props

svn commit: r301683 - head/etc/defaults

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:38:48 2016 New Revision: 301683 URL: https://svnweb.freebsd.org/changeset/base/301683 Log: Fix typo with description for $ipv6_cpe_wanif (upstram -> upstream) MFC after: 3 days PR: 210146 Reported by: Sean M. Collins Sponsored by:

svn commit: r301682 - stable/10/lib/libc/rpc

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:27:44 2016 New Revision: 301682 URL: https://svnweb.freebsd.org/changeset/base/301682 Log: MFC r300386: Don't leak `handle` if svc_tp_create(..) succeeds and allocating a new struct xlist object fails CID: 978277 Modified:

svn commit: r301681 - stable/9/sys/rpc

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:23:33 2016 New Revision: 301681 URL: https://svnweb.freebsd.org/changeset/base/301681 Log: MFstable/10 r301680: MFC r300625: Remove unnecessary memset(.., 0, ..)'s The mem_alloc macro calls calloc (userspace) / malloc(.., M_WAITOK|M_ZERO) under

svn commit: r301680 - stable/10/sys/rpc

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:22:54 2016 New Revision: 301680 URL: https://svnweb.freebsd.org/changeset/base/301680 Log: MFC r300625: Remove unnecessary memset(.., 0, ..)'s The mem_alloc macro calls calloc (userspace) / malloc(.., M_WAITOK|M_ZERO) under the covers, so zeroing out

svn commit: r301679 - in head: contrib/libc-vis lib/libc/gen

2016-06-08 Thread Brooks Davis
Author: brooks Date: Wed Jun 8 18:21:27 2016 New Revision: 301679 URL: https://svnweb.freebsd.org/changeset/base/301679 Log: Update to a June 8th snapshot of (un)vis form NetBSD. This adds stravis() and some new encoding flags VIS_SHELL, VIS_META, and VIS_NOLOCALE. Assorted

svn commit: r301678 - stable/10/tools/tools/ioat

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:21:25 2016 New Revision: 301678 URL: https://svnweb.freebsd.org/changeset/base/301678 Log: MFC r300861,r300862: r300861: - Sort make variables - Use SRCTOP instead of ad hoc definition for it r300862: Install ioatcontrol to /usr/bin by

svn commit: r301677 - stable/10/tools/tools/ioat

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:19:34 2016 New Revision: 301677 URL: https://svnweb.freebsd.org/changeset/base/301677 Log: MFC r300856,r300857,r300858,r300874: r300856: Initialize `t` with memset(.., 0, ..) This will help ensure that we're not using random garbage on the stack

svn commit: r301676 - stable/9/contrib/top

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:16:34 2016 New Revision: 301676 URL: https://svnweb.freebsd.org/changeset/base/301676 Log: MFstable/10 r301675: MFC r300714: The readme provides a high-level overview of how to upgrade top(1). Reviewed By: ngie Added:

svn commit: r301675 - stable/10/contrib/top

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:15:51 2016 New Revision: 301675 URL: https://svnweb.freebsd.org/changeset/base/301675 Log: MFC r300714: The readme provides a high-level overview of how to upgrade top(1). Reviewed By: ngie Added: stable/10/contrib/top/FREEBSD-upgrade - copied

svn commit: r301674 - stable/9/lib/libbsnmp

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:15:13 2016 New Revision: 301674 URL: https://svnweb.freebsd.org/changeset/base/301674 Log: MFstable/10 r301673: MFC r299699: Remove NO_WERROR from libbsnmp/Makefile.inc This has been compiling without warnings with clang/gcc for a while now

svn commit: r301673 - stable/10/lib/libbsnmp

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:14:06 2016 New Revision: 301673 URL: https://svnweb.freebsd.org/changeset/base/301673 Log: MFC r299699: Remove NO_WERROR from libbsnmp/Makefile.inc This has been compiling without warnings with clang/gcc for a while now Tested with: clang 3.8.0,

svn commit: r301672 - stable/9/usr.sbin/bsnmpd/modules/snmp_mibII

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:09:40 2016 New Revision: 301672 URL: https://svnweb.freebsd.org/changeset/base/301672 Log: MFstable/10 r301671: MFC r299815: Remove NO_WERROR.clang from this Makefile This compiles with clang without warnings Modified:

svn commit: r301671 - stable/10/usr.sbin/bsnmpd/modules/snmp_mibII

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:08:06 2016 New Revision: 301671 URL: https://svnweb.freebsd.org/changeset/base/301671 Log: MFC r299815: Remove NO_WERROR.clang from this Makefile This compiles with clang without warnings Modified:

svn commit: r301670 - stable/9/usr.sbin/bsnmpd/tools

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:07:51 2016 New Revision: 301670 URL: https://svnweb.freebsd.org/changeset/base/301670 Log: MFstable/10 r301669: MFC r299806: Bump WARNS to 6 Modified: stable/9/usr.sbin/bsnmpd/tools/Makefile.inc Directory Properties: stable/9/ (props changed)

svn commit: r301669 - stable/10/usr.sbin/bsnmpd/tools

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:05:52 2016 New Revision: 301669 URL: https://svnweb.freebsd.org/changeset/base/301669 Log: MFC r299806: Bump WARNS to 6 Modified: stable/10/usr.sbin/bsnmpd/tools/Makefile.inc Directory Properties: stable/10/ (props changed) Modified:

svn commit: r301668 - stable/9/contrib/bsnmp/snmpd

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 18:00:07 2016 New Revision: 301668 URL: https://svnweb.freebsd.org/changeset/base/301668 Log: MFstable/10 r301667: MFC r299834: Fix .Dd Today is the 14th, not the 10th of May Modified: stable/9/contrib/bsnmp/snmpd/bsnmpd.1 Directory Properties:

svn commit: r301667 - stable/10/contrib/bsnmp/snmpd

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:59:21 2016 New Revision: 301667 URL: https://svnweb.freebsd.org/changeset/base/301667 Log: MFC r299834: Fix .Dd Today is the 14th, not the 10th of May Modified: stable/10/contrib/bsnmp/snmpd/bsnmpd.1 Directory Properties: stable/10/ (props

svn commit: r301666 - head/sys/netinet

2016-06-08 Thread Michael Tuexen
Author: tuexen Date: Wed Jun 8 17:57:42 2016 New Revision: 301666 URL: https://svnweb.freebsd.org/changeset/base/301666 Log: Use a separate MID counter for ordered und unordered messages for each outgoing stream. Thanks to Jens Hoelscher for reporting the issue. MFC after: 1 week

svn commit: r301665 - in head: contrib/bmake usr.bin/bmake

2016-06-08 Thread Simon J. Gerraty
Author: sjg Date: Wed Jun 8 17:51:21 2016 New Revision: 301665 URL: https://svnweb.freebsd.org/changeset/base/301665 Log: Merge bmake-20160606 o dir.c: extend mtimes cache to others via cached_stat() Modified: head/contrib/bmake/ChangeLog head/contrib/bmake/Makefile

svn commit: r301664 - in stable/9/contrib/bsnmp: snmp_mibII snmpd

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:50:51 2016 New Revision: 301664 URL: https://svnweb.freebsd.org/changeset/base/301664 Log: MFstable/10 r301663: MFC r294507,r294567,r299466: r294507 (by harti): Fill the ifAlias leaf of the ifXTable with the interface description if there is one

svn commit: r301663 - in stable/10/contrib/bsnmp: snmp_mibII snmpd

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:49:03 2016 New Revision: 301663 URL: https://svnweb.freebsd.org/changeset/base/301663 Log: MFC r294507,r294567,r299466: r294507 (by harti): Fill the ifAlias leaf of the ifXTable with the interface description if there is one available and it fits

svn commit: r301662 - in stable/9/contrib/bsnmp: lib snmp_mibII snmp_target

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:44:22 2016 New Revision: 301662 URL: https://svnweb.freebsd.org/changeset/base/301662 Log: MFstable/10 r301661: MFC r256678,r256680,r260986,r272878,r286402: r256678 (by syrinx): Fix SNMP Error response PDUs and properly encode them when using v3

svn commit: r301661 - in stable/10/contrib/bsnmp: lib snmp_mibII snmp_target

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:43:04 2016 New Revision: 301661 URL: https://svnweb.freebsd.org/changeset/base/301661 Log: MFC r256678,r256680,r260986,r272878,r286402: r256678 (by syrinx): Fix SNMP Error response PDUs and properly encode them when using v3 auth/encryption.

svn commit: r301659 - stable/9/usr.sbin/bsnmpd/tools/libbsnmptools

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:35:59 2016 New Revision: 301659 URL: https://svnweb.freebsd.org/changeset/base/301659 Log: MFstable/10 r301657: MFC r299701: Move _bsnmptools_debug extern from bsnmpmap.c to bsnmptools.h It was used in bsnmpmap.c but was stored in bsnmptools.c;

svn commit: r301660 - vendor/NetBSD/libc-vis/20160608

2016-06-08 Thread Brooks Davis
Author: brooks Date: Wed Jun 8 17:36:01 2016 New Revision: 301660 URL: https://svnweb.freebsd.org/changeset/base/301660 Log: Tag 2016-06-08 import of NetBSD's (un)vis(3) Added: vendor/NetBSD/libc-vis/20160608/ - copied from r301659, vendor/NetBSD/libc-vis/dist

svn commit: r301658 - vendor/NetBSD/libc-vis/dist

2016-06-08 Thread Brooks Davis
Author: brooks Date: Wed Jun 8 17:35:13 2016 New Revision: 301658 URL: https://svnweb.freebsd.org/changeset/base/301658 Log: Vendor import of NetBSD's (un)vis(3) at 2016-06-08 Modified: vendor/NetBSD/libc-vis/dist/unvis.c vendor/NetBSD/libc-vis/dist/vis.3

svn commit: r301657 - stable/10/usr.sbin/bsnmpd/tools/libbsnmptools

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:34:37 2016 New Revision: 301657 URL: https://svnweb.freebsd.org/changeset/base/301657 Log: MFC r299701: Move _bsnmptools_debug extern from bsnmpmap.c to bsnmptools.h It was used in bsnmpmap.c but was stored in bsnmptools.c; moving the extern to the

svn commit: r301656 - stable/10/usr.sbin/bsnmpd/tools/libbsnmptools

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:32:41 2016 New Revision: 301656 URL: https://svnweb.freebsd.org/changeset/base/301656 Log: MFC r299778: Use a consistent errno save/restore pattern before running strtoul - Save errno - Set errno to 0 - Call strtoul - Test errno (optional, but

svn commit: r301655 - stable/10/usr.sbin/bsnmpd/tools/libbsnmptools

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:30:29 2016 New Revision: 301655 URL: https://svnweb.freebsd.org/changeset/base/301655 Log: MFC r299766: Fix logically dead code pointed out by clang/Coverity parse_context, parse_user_security: test for validity of results from parse_ascii(..) with

svn commit: r301654 - stable/9/usr.sbin/bsnmpd/tools/libbsnmptools

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:29:07 2016 New Revision: 301654 URL: https://svnweb.freebsd.org/changeset/base/301654 Log: MFstable/10 r301653: MFC r299810: Correct function names that failed in error messages It should be calloc/strdup, not malloc Modified:

svn commit: r301653 - stable/10/usr.sbin/bsnmpd/tools/libbsnmptools

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:27:38 2016 New Revision: 301653 URL: https://svnweb.freebsd.org/changeset/base/301653 Log: MFC r299810: Correct function names that failed in error messages It should be calloc/strdup, not malloc Modified:

svn commit: r301652 - stable/9/usr.sbin/bsnmpd/tools/libbsnmptools

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:24:57 2016 New Revision: 301652 URL: https://svnweb.freebsd.org/changeset/base/301652 Log: MFstable/10 r300475: MFC r299710,r299711,r299763,r299783,r299811: r299710: Staticize global variables only used in bsnmpimport.c to fix

svn commit: r301651 - head/sbin/ifconfig

2016-06-08 Thread Andriy Voskoboinyk
Author: avos Date: Wed Jun 8 17:21:15 2016 New Revision: 301651 URL: https://svnweb.freebsd.org/changeset/base/301651 Log: ifconfig: fix wlan creation when unit number is not provided (was broken after r300738). Reported by: Yoshihiro Ota , adrian Tested by:

svn commit: r301650 - stable/9/usr.sbin/rpcbind

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:17:03 2016 New Revision: 301650 URL: https://svnweb.freebsd.org/changeset/base/301650 Log: MFstable/10 r301636: MFC r300867,r300932,r300934,r300941,r300972,r300973: r300867: Only expose `hint_uaddr` in the ND_DEBUG case This fixes a

svn commit: r301649 - stable/9/usr.sbin/rpcbind

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:13:57 2016 New Revision: 301649 URL: https://svnweb.freebsd.org/changeset/base/301649 Log: MFstable/10 r301648: MFC r300947: Staticize variables only used in rpcbind.c This is some low hanging fruit necessary for making this WARNS?= 6 clean

svn commit: r301648 - stable/10/usr.sbin/rpcbind

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:13:28 2016 New Revision: 301648 URL: https://svnweb.freebsd.org/changeset/base/301648 Log: MFC r300947: Staticize variables only used in rpcbind.c This is some low hanging fruit necessary for making this WARNS?= 6 clean Modified:

svn commit: r301647 - stable/9/usr.sbin/rpcbind

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:12:37 2016 New Revision: 301647 URL: https://svnweb.freebsd.org/changeset/base/301647 Log: MFstable/10 r301646: MFC r300945: Remove unnecessary caller_uaddr != NULL test before calling free on it Modified: stable/9/usr.sbin/rpcbind/util.c Directory

svn commit: r301646 - stable/10/usr.sbin/rpcbind

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:11:42 2016 New Revision: 301646 URL: https://svnweb.freebsd.org/changeset/base/301646 Log: MFC r300945: Remove unnecessary caller_uaddr != NULL test before calling free on it Modified: stable/10/usr.sbin/rpcbind/util.c Directory Properties: stable/10/

svn commit: r301645 - stable/9/usr.sbin/rpcbind

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:10:43 2016 New Revision: 301645 URL: https://svnweb.freebsd.org/changeset/base/301645 Log: MFstable/10 r301644: MFC r300942: Remove a useless if (x != NULL) check before calling free on allocated_uaddr Modified:

svn commit: r301644 - stable/10/usr.sbin/rpcbind

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:09:47 2016 New Revision: 301644 URL: https://svnweb.freebsd.org/changeset/base/301644 Log: MFC r300942: Remove a useless if (x != NULL) check before calling free on allocated_uaddr Modified: stable/10/usr.sbin/rpcbind/check_bound.c Directory Properties:

svn commit: r301643 - stable/9/usr.sbin/rpcbind

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 17:04:15 2016 New Revision: 301643 URL: https://svnweb.freebsd.org/changeset/base/301643 Log: MFC r300932,r300934,r300941,r300972,r300973: r300932: Catch malloc(3) errors and socket(2) errors - malloc failing will result in a delayed segfault -

svn commit: r301642 - stable/9/usr.sbin/rpcbind

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 16:59:09 2016 New Revision: 301642 URL: https://svnweb.freebsd.org/changeset/base/301642 Log: MFstable/10 r296994: r296994 (by asomers): MFC r293229, r293833 to usr.sbin/rpcbind r293833 | asomers | 2016-01-13 10:33:50 -0700 (Wed, 13 Jan 2016) | 16 lines

Re: svn commit: r301577 - stable/10/etc/periodic/daily

2016-06-08 Thread Cy Schubert
In message , Andrey Chernov w rites: > The code still is called only if $daily_ntpd_leapfile_enable is YES and > it is NO by default. Yes, that will be MFCd on Friday, June 10. -- Cheers, Cy Schubert or

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

2016-06-08 Thread Adrian Chadd
Author: adrian Date: Wed Jun 8 16:26:44 2016 New Revision: 301641 URL: https://svnweb.freebsd.org/changeset/base/301641 Log: [ath_hal] modify the xmit code to use temporary variables for setting qmisc/dmisc. This is in preparation for some other TDMA fixes which will hopefully end with

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

2016-06-08 Thread Adrian Chadd
Author: adrian Date: Wed Jun 8 16:21:38 2016 New Revision: 301640 URL: https://svnweb.freebsd.org/changeset/base/301640 Log: [ath_hal] add a _S so FSP (frame scheduling policy) can be set/read via SM/MS macros. Modified: head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300reg.h Modified:

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

2016-06-08 Thread Adrian Chadd
Author: adrian Date: Wed Jun 8 16:10:34 2016 New Revision: 301639 URL: https://svnweb.freebsd.org/changeset/base/301639 Log: [ath_hal] correctly initialise the CAB queue default value * Allow readyTime to just be programmed in directly * The beacon interval and all of the beacon timing

Re: svn commit: r301577 - stable/10/etc/periodic/daily

2016-06-08 Thread Andrey Chernov
The code still is called only if $daily_ntpd_leapfile_enable is YES and it is NO by default. On 08.06.2016 6:08, Cy Schubert wrote: > Author: cy > Date: Wed Jun 8 03:08:37 2016 > New Revision: 301577 > URL: https://svnweb.freebsd.org/changeset/base/301577 > > Log: > MFC r301102: > >

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

2016-06-08 Thread Adrian Chadd
Author: adrian Date: Wed Jun 8 16:08:05 2016 New Revision: 301638 URL: https://svnweb.freebsd.org/changeset/base/301638 Log: [ath_hal] initialise ah_beaconInterval when the AP/IBSS/TDMA beacon is setup. Modified: head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300.h

svn commit: r301636 - stable/10/usr.sbin/rpcbind

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 15:41:39 2016 New Revision: 301636 URL: https://svnweb.freebsd.org/changeset/base/301636 Log: MFC r300867,r300932,r300934,r300941,r300972,r300973: r300867: Only expose `hint_uaddr` in the ND_DEBUG case This fixes a -Wunused-but-set-variable warning

svn commit: r301635 - vendor/NetBSD/bmake/20160606

2016-06-08 Thread Simon J. Gerraty
Author: sjg Date: Wed Jun 8 15:38:19 2016 New Revision: 301635 URL: https://svnweb.freebsd.org/changeset/base/301635 Log: tag bmake-20160606 Added: vendor/NetBSD/bmake/20160606/ - copied from r301634, vendor/NetBSD/bmake/dist/ ___

svn commit: r301634 - vendor/NetBSD/bmake/dist

2016-06-08 Thread Simon J. Gerraty
Author: sjg Date: Wed Jun 8 15:38:06 2016 New Revision: 301634 URL: https://svnweb.freebsd.org/changeset/base/301634 Log: Import bmake-20160606 From ChangeLog: o dir.c: extend mtimes cache to others via cached_stat() Modified: vendor/NetBSD/bmake/dist/ChangeLog

Re: svn commit: r301632 - in head/sys/dev: flash mii

2016-06-08 Thread Baptiste Daroussin
On Wed, Jun 08, 2016 at 02:22:16PM +, Baptiste Daroussin wrote: > Author: bapt > Date: Wed Jun 8 14:22:16 2016 > New Revision: 301632 > URL: https://svnweb.freebsd.org/changeset/base/301632 > > Log: > Add support for Atmel at25df641 flash > > Submitted by: Grégory Soutadé

svn commit: r301631 - head/release/doc/en_US.ISO8859-1/relnotes

2016-06-08 Thread Steven Kreuzer
Author: skreuzer (doc,ports committer) Date: Wed Jun 8 14:21:48 2016 New Revision: 301631 URL: https://svnweb.freebsd.org/changeset/base/301631 Log: Document 300880, Leading spaces are stripped from SCSI disk serial numbers Approved by: re (gjb, implicit, relnotes) Modified:

svn commit: r301628 - head/sys/dev/cxgbe

2016-06-08 Thread Navdeep Parhar
Author: np Date: Wed Jun 8 14:15:29 2016 New Revision: 301628 URL: https://svnweb.freebsd.org/changeset/base/301628 Log: cxgbe(4): Add a sysctl to manage the binding of a txq to a traffic class. Sponsored by: Chelsio Communications Modified: head/sys/dev/cxgbe/adapter.h

svn commit: r301632 - in head/sys/dev: flash mii

2016-06-08 Thread Baptiste Daroussin
Author: bapt Date: Wed Jun 8 14:22:16 2016 New Revision: 301632 URL: https://svnweb.freebsd.org/changeset/base/301632 Log: Add support for Atmel at25df641 flash Submitted by: Grégory Soutadé (via github pull request) Modified: head/sys/dev/flash/mx25l.c

svn commit: r301630 - stable/9/lib/libc/rpc

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 14:20:54 2016 New Revision: 301630 URL: https://svnweb.freebsd.org/changeset/base/301630 Log: MFstable/10 r301629: MFC r300387,r300388,r300389: r300387: getnetid(..): consistently fclose fd at the end of the function This mutes a false positive

svn commit: r301629 - stable/10/lib/libc/rpc

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 14:18:47 2016 New Revision: 301629 URL: https://svnweb.freebsd.org/changeset/base/301629 Log: MFC r300387,r300388,r300389: r300387: getnetid(..): consistently fclose fd at the end of the function This mutes a false positive with cppcheck, but also

svn commit: r301627 - stable/10/bin/ls/tests

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 14:07:43 2016 New Revision: 301627 URL: https://svnweb.freebsd.org/changeset/base/301627 Log: MFC r300939: Use require.progs with bc instead of require.files with /usr/bin/bc This will make things more flexible if the program path changes in the future,

svn commit: r301626 - stable/10/tools/build/mk

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 14:06:34 2016 New Revision: 301626 URL: https://svnweb.freebsd.org/changeset/base/301626 Log: MFC r300938: Remove the sa(8) tests if MK_ACCT == no when "make delete-old" is run sa(8) is conditionally installed based on MK_ACCT != no today Modified:

svn commit: r301625 - stable/10/tools/build/mk

2016-06-08 Thread Garrett Cooper
Author: ngie Date: Wed Jun 8 14:05:08 2016 New Revision: 301625 URL: https://svnweb.freebsd.org/changeset/base/301625 Log: MFC r300937: Remove the etcupdate tests if MK_RCS == no when "make delete-old" is run etcupdate is conditionally installed based on MK_RCS != no today Modified:

svn commit: r301624 - head/share/mk

2016-06-08 Thread Bryan Drewery
Author: bdrewery Date: Wed Jun 8 14:02:21 2016 New Revision: 301624 URL: https://svnweb.freebsd.org/changeset/base/301624 Log: Don't force filemon for makeman/showconfig Reported by: lidl Modified: head/share/mk/sys.mk Modified: head/share/mk/sys.mk

  1   2   >