Re: svn commit: r294535 - in head/sys/netinet: . cc tcp_stacks

2016-01-22 Thread George Neville-Neil
On 22 Jan 2016, at 2:13, Lawrence Stewart wrote: Hi Gleb, On 01/22/16 09:34, Gleb Smirnoff wrote: Author: glebius Date: Thu Jan 21 22:34:51 2016 New Revision: 294535 URL: https://svnweb.freebsd.org/changeset/base/294535 Log: - Rename cc.h to more meaningful tcp_cc.h. As a bit of

svn commit: r294600 - head/tools/tools/ath/ath_ee_v4k_print

2016-01-22 Thread Andriy Voskoboinyk
Author: avos Date: Fri Jan 22 20:53:50 2016 New Revision: 294600 URL: https://svnweb.freebsd.org/changeset/base/294600 Log: tools/tools/ath/ath_ee_v4k_print: reflect changes from r220589 Fix printf() arguments + sort includes Approved by: adrian (mentor) Differential Revision:

svn commit: r294601 - in vendor/libc++: dist/libc++-release_38-r257836 libc++-release_38-r257836

2016-01-22 Thread Dimitry Andric
Author: dim Date: Fri Jan 22 21:14:05 2016 New Revision: 294601 URL: https://svnweb.freebsd.org/changeset/base/294601 Log: Oops, move the vendor tag created in r294165 to the right location. Added: vendor/libc++/libc++-release_38-r257836/ - copied from r294600,

Re: svn commit: r294495 - in head: . crypto/openssh

2016-01-22 Thread Bryan Drewery
On 1/22/2016 1:56 PM, Dag-Erling Smørgrav wrote: > Bryan Drewery writes: >> I've used these in sshd_config and ssh_config to restore some removed >> functionality: >> >> Ciphers +blowfish-cbc,arcfour,aes128-cbc,3des-cbc >> KexAlgorithms +diffie-hellman-group1-sha1 > > Do

svn commit: r294598 - head/sys/kern

2016-01-22 Thread Konstantin Belousov
Author: kib Date: Fri Jan 22 20:38:46 2016 New Revision: 294598 URL: https://svnweb.freebsd.org/changeset/base/294598 Log: In tty_dealloc(), clear the queues. See the comment for a scenario which explains why ttydev_leave() cleanup might not happen. Submitted by: bde MFC after:3

svn commit: r294607 - vendor/libc++/libc++-release_38-r258549

2016-01-22 Thread Dimitry Andric
Author: dim Date: Fri Jan 22 21:18:25 2016 New Revision: 294607 URL: https://svnweb.freebsd.org/changeset/base/294607 Log: Tag libc++ release_38 branch r258549. Added: vendor/libc++/libc++-release_38-r258549/ - copied from r294606, vendor/libc++/dist/

svn commit: r294606 - in vendor/libc++/dist: src/include test/libcxx test/libcxx/test test/std/atomics/atomics.types.operations/atomics.types.operations.req test/std/utilities/function.objects/func...

2016-01-22 Thread Dimitry Andric
Author: dim Date: Fri Jan 22 21:18:04 2016 New Revision: 294606 URL: https://svnweb.freebsd.org/changeset/base/294606 Log: Vendor import of libc++ release_38 branch r258549: https://llvm.org/svn/llvm-project/libcxx/branches/release_38@258549 Modified:

svn commit: r294593 - in head/bin/sh: . tests/builtins

2016-01-22 Thread Jilles Tjoelker
Author: jilles Date: Fri Jan 22 20:10:08 2016 New Revision: 294593 URL: https://svnweb.freebsd.org/changeset/base/294593 Log: sh: Clean a readonly local, even if the variable does not exist outside. If a local variable has been made read-only, this should not prevent its removal when the

svn commit: r294595 - head/sys/fs/devfs

2016-01-22 Thread Konstantin Belousov
Author: kib Date: Fri Jan 22 20:30:51 2016 New Revision: 294595 URL: https://svnweb.freebsd.org/changeset/base/294595 Log: When devfs dirent is freed, a vnode might still keep a pointer to it, apparently. Interlock and clear the pointer to avoid free memory dereference. Submitted by:

svn commit: r294596 - head/sys/kern

2016-01-22 Thread Konstantin Belousov
Author: kib Date: Fri Jan 22 20:35:20 2016 New Revision: 294596 URL: https://svnweb.freebsd.org/changeset/base/294596 Log: The struct file f_advice member is overlaid with the devfs f_cdevpriv data. If vnode bypass for devfs file failed, vn_read/vn_write are called and might try to

svn commit: r294597 - head/lib/libc/string

2016-01-22 Thread Warren Block
Author: wblock (doc committer) Date: Fri Jan 22 20:36:03 2016 New Revision: 294597 URL: https://svnweb.freebsd.org/changeset/base/294597 Log: Add a standards compliance note for strtok_r as suggested by cpercival. Reviewed by: cpercival MFC after:1 week Modified:

svn commit: r294604 - in vendor/clang/dist: lib/CodeGen lib/Sema test/OpenMP test/SemaTemplate

2016-01-22 Thread Dimitry Andric
Author: dim Date: Fri Jan 22 21:17:12 2016 New Revision: 294604 URL: https://svnweb.freebsd.org/changeset/base/294604 Log: Vendor import of clang release_38 branch r258549: https://llvm.org/svn/llvm-project/cfe/branches/release_38@258549 Modified:

svn commit: r294605 - vendor/clang/clang-release_38-r258549

2016-01-22 Thread Dimitry Andric
Author: dim Date: Fri Jan 22 21:17:32 2016 New Revision: 294605 URL: https://svnweb.freebsd.org/changeset/base/294605 Log: Tag clang release_38 branch r258549. Added: vendor/clang/clang-release_38-r258549/ - copied from r294604, vendor/clang/dist/

svn commit: r294608 - in head: gnu/lib/libreadline/readline lib/libelftc sys/boot/usb/tools

2016-01-22 Thread Ed Maste
Author: emaste Date: Fri Jan 22 21:33:27 2016 New Revision: 294608 URL: https://svnweb.freebsd.org/changeset/base/294608 Log: Use MAN= to specify that no man page is provided NO_MAN is deprecated. Reviewed by: imp Modified: head/gnu/lib/libreadline/readline/Makefile

Re: svn commit: r294495 - in head: . crypto/openssh

2016-01-22 Thread Bryan Drewery
On 1/22/2016 1:37 AM, Dag-Erling Smørgrav wrote: > Conrad Meyer writes: >> Are we going to maintain DSA key support after upstream deprecates it >> entirely? And why? > > I am not aware of any plans to remove DSA support. It has simply been > disabled in the default run-time

svn commit: r294594 - head/sys/dev/pty

2016-01-22 Thread Konstantin Belousov
Author: kib Date: Fri Jan 22 20:28:24 2016 New Revision: 294594 URL: https://svnweb.freebsd.org/changeset/base/294594 Log: Remove printf only useful for debugging. Requested by: bde Sponsored by: The FreeBSD Foundation MFC after:3 weeks Modified: head/sys/dev/pty/pty.c

svn commit: r294602 - in vendor/llvm/dist: include/llvm/CodeGen include/llvm/IR include/llvm/Transforms/Utils lib/CodeGen lib/CodeGen/AsmPrinter lib/CodeGen/SelectionDAG lib/IR lib/Target/AArch64 l...

2016-01-22 Thread Dimitry Andric
Author: dim Date: Fri Jan 22 21:16:09 2016 New Revision: 294602 URL: https://svnweb.freebsd.org/changeset/base/294602 Log: Vendor import of llvm release_38 branch r258549: https://llvm.org/svn/llvm-project/llvm/branches/release_38@258549 Added:

svn commit: r294603 - vendor/llvm/llvm-release_38-r258549

2016-01-22 Thread Dimitry Andric
Author: dim Date: Fri Jan 22 21:16:50 2016 New Revision: 294603 URL: https://svnweb.freebsd.org/changeset/base/294603 Log: Tag llvm release_38 branch r258549. Added: vendor/llvm/llvm-release_38-r258549/ - copied from r294602, vendor/llvm/dist/

Re: svn commit: r294495 - in head: . crypto/openssh

2016-01-22 Thread Dag-Erling Smørgrav
Bryan Drewery writes: > I've used these in sshd_config and ssh_config to restore some removed > functionality: > > Ciphers +blowfish-cbc,arcfour,aes128-cbc,3des-cbc > KexAlgorithms +diffie-hellman-group1-sha1 Do you actually need these? Do you know of any clients or

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

2016-01-22 Thread Gleb Smirnoff
On Fri, Jan 22, 2016 at 05:19:34PM +1100, Lawrence Stewart wrote: L> On 01/22/16 09:53, Gleb Smirnoff wrote: L> > Author: glebius L> > Date: Thu Jan 21 22:53:12 2016 L> > New Revision: 294536 L> > URL: https://svnweb.freebsd.org/changeset/base/294536 L> > L> > Log: L> > Refactor TCP_CONGESTION

svn commit: r294582 - head/bin/sh/tests/builtins

2016-01-22 Thread Jilles Tjoelker
Author: jilles Date: Fri Jan 22 18:10:36 2016 New Revision: 294582 URL: https://svnweb.freebsd.org/changeset/base/294582 Log: sh: Add already working test for local-readonly interaction. Added: head/bin/sh/tests/builtins/local6.0 (contents, props changed) Modified:

Re: svn commit: r294535 - in head/sys/netinet: . cc tcp_stacks

2016-01-22 Thread Gleb Smirnoff
On Fri, Jan 22, 2016 at 06:13:54PM +1100, Lawrence Stewart wrote: L> On 01/22/16 09:34, Gleb Smirnoff wrote: L> > Author: glebius L> > Date: Thu Jan 21 22:34:51 2016 L> > New Revision: 294535 L> > URL: https://svnweb.freebsd.org/changeset/base/294535 L> > L> > Log: L> > - Rename cc.h to more

Re: svn commit: r294588 - stable/10

2016-01-22 Thread NGie Cooper
> On Jan 22, 2016, at 10:38, Gleb Smirnoff wrote: > > Author: glebius > Date: Fri Jan 22 18:38:52 2016 > New Revision: 294588 > URL: https://svnweb.freebsd.org/changeset/base/294588 > > Log: > Make it possible to override NO_INSTALLEXTRAKERNELS. > > Submitted by:

Re: svn commit: r294562 - head/sys/dev/fdt

2016-01-22 Thread Ian Lepore
On Fri, 2016-01-22 at 10:26 -0800, Adrian Chadd wrote: > ... we're about to start using FDT on MIPS, so .. ? > > > -a > But mips will be using intrng from the outset, only the arm platforms that don't yet use intrng need fdt_pic_table. -- Ian > > On 22 January 2016 at 05:09, Andrew Turner

svn commit: r294588 - stable/10

2016-01-22 Thread Gleb Smirnoff
Author: glebius Date: Fri Jan 22 18:38:52 2016 New Revision: 294588 URL: https://svnweb.freebsd.org/changeset/base/294588 Log: Make it possible to override NO_INSTALLEXTRAKERNELS. Submitted by: ngie Modified: stable/10/Makefile.inc1 Modified: stable/10/Makefile.inc1

Re: svn commit: r294562 - head/sys/dev/fdt

2016-01-22 Thread Adrian Chadd
... we're about to start using FDT on MIPS, so .. ? -a On 22 January 2016 at 05:09, Andrew Turner wrote: > Author: andrew > Date: Fri Jan 22 13:09:43 2016 > New Revision: 294562 > URL: https://svnweb.freebsd.org/changeset/base/294562 > > Log: > Only define fdt_pic_table

svn commit: r294591 - head/usr.bin/whois

2016-01-22 Thread Tony Finch
Author: fanf Date: Fri Jan 22 19:06:43 2016 New Revision: 294591 URL: https://svnweb.freebsd.org/changeset/base/294591 Log: Update whois synopsis and usage with new options Modified: head/usr.bin/whois/whois.1 head/usr.bin/whois/whois.c Modified: head/usr.bin/whois/whois.1

svn commit: r294590 - head/gnu/lib/libgcc

2016-01-22 Thread Ed Maste
Author: emaste Date: Fri Jan 22 19:03:39 2016 New Revision: 294590 URL: https://svnweb.freebsd.org/changeset/base/294590 Log: Restore libunwind.cpp to LLVM libunwind build (reverts r294576) The unw_* functions are not exported, but are used internally. Modified:

Re: svn commit: r294417 - in stable/10/sys/boot: common fdt forth i386/libi386 i386/loader

2016-01-22 Thread Roger Pau Monné
El 21/01/16 a les 21.38, Devin Teske ha escrit: > >> On Jan 20, 2016, at 5:23 AM, Roger Pau Monné wrote: >> >> Author: royger >> Date: Wed Jan 20 13:23:02 2016 >> New Revision: 294417 >> URL: https://svnweb.freebsd.org/changeset/base/294417 >> >> Log: >> MFC r277215,

svn commit: r294556 - head/share/dtrace

2016-01-22 Thread Devin Teske
Author: dteske Date: Fri Jan 22 08:29:23 2016 New Revision: 294556 URL: https://svnweb.freebsd.org/changeset/base/294556 Log: Switch to syscall; HEAD lacks fbt for kill(2) MFC after:3 days X-MFC-to: stable/10 X-MFC-with: 294548 Modified: head/share/dtrace/watch_kill

svn commit: r294557 - head/sys/dev/hyperv/storvsc

2016-01-22 Thread Sepherosa Ziehau
Author: sephe Date: Fri Jan 22 09:06:40 2016 New Revision: 294557 URL: https://svnweb.freebsd.org/changeset/base/294557 Log: hyperv/stor: Verify returned inquiry data before further dispatching Windows 10 and Window 2016 will return all zero inquiry data for non-existing slots. If we

Re: svn commit: r293391 - stable/10

2016-01-22 Thread Slawa Olhovchenkov
On Thu, Jan 21, 2016 at 06:25:05PM -0800, Gleb Smirnoff wrote: > On Fri, Jan 22, 2016 at 05:18:28AM +0300, Slawa Olhovchenkov wrote: > S> > On Thu, Jan 21, 2016 at 4:29 PM, Slawa Olhovchenkov > wrote: > S> > > On Thu, Jan 07, 2016 at 11:10:44PM +, Gleb Smirnoff wrote: > S>

svn commit: r294558 - head/sys/cam/ctl

2016-01-22 Thread Alexander Motin
Author: mav Date: Fri Jan 22 09:32:19 2016 New Revision: 294558 URL: https://svnweb.freebsd.org/changeset/base/294558 Log: Hide "soconnect() error" messages under bootverbose. They can be too noisy. Modified: head/sys/cam/ctl/ctl_ha.c Modified: head/sys/cam/ctl/ctl_ha.c

Re: svn commit: r293391 - stable/10

2016-01-22 Thread Slawa Olhovchenkov
On Thu, Jan 21, 2016 at 06:49:49PM -0800, NGie Cooper wrote: > > > On Jan 21, 2016, at 18:25, Gleb Smirnoff wrote: > > > > On Fri, Jan 22, 2016 at 05:18:28AM +0300, Slawa Olhovchenkov wrote: > > S> > On Thu, Jan 21, 2016 at 4:29 PM, Slawa Olhovchenkov >

Re: svn commit: r294495 - in head: . crypto/openssh

2016-01-22 Thread Dag-Erling Smørgrav
Conrad Meyer writes: > Are we going to maintain DSA key support after upstream deprecates it > entirely? And why? I am not aware of any plans to remove DSA support. It has simply been disabled in the default run-time configuration - unlike, for instance, libwrap, which was

Re: svn commit: r294495 - in head: . crypto/openssh

2016-01-22 Thread Slawa Olhovchenkov
On Fri, Jan 22, 2016 at 10:56:48PM +0100, Dag-Erling Smørgrav wrote: > Bryan Drewery writes: > > I've used these in sshd_config and ssh_config to restore some removed > > functionality: > > > > Ciphers +blowfish-cbc,arcfour,aes128-cbc,3des-cbc > > KexAlgorithms

Re: svn commit: r294543 - head/usr.sbin/ypldap

2016-01-22 Thread Marcelo Araujo
2016-01-22 15:57 GMT+08:00 Bruce Evans : > On Fri, 22 Jan 2016, Marcelo Araujo wrote: > > Log: >> Switch from FD_SETSIZE to getdtablesize(2) as it can make the FD to be >> tunable. Also it gets more close with the original implementation from >> OpenBSD. >> > > Modified:

Re: svn commit: r294556 - head/share/dtrace

2016-01-22 Thread Devin Teske
A better log message in retrospect: "syscalls changed fbt names to be sys_*" (developed these scripts on 8.x originally where "sys_" prefix was not applied and we still had fbt::kill) -- Devin On Fri, 2016-01-22 at 08:29 +, Devin Teske wrote: > Author: dteske > Date: Fri Jan 22 08:29:23

Re: svn commit: r294543 - head/usr.sbin/ypldap

2016-01-22 Thread Marcelo Araujo
2016-01-22 19:37 GMT+08:00 Bruce Evans : > On Fri, 22 Jan 2016, Marcelo Araujo wrote: > > 2016-01-22 15:57 GMT+08:00 Bruce Evans : >> >>> ... >>> Unfortunately, getdtablesize() is still needed for arrays as used in yp*, >>> and for anything using

svn commit: r294561 - head/sys/arm/ti

2016-01-22 Thread Andrew Turner
Author: andrew Date: Fri Jan 22 12:51:12 2016 New Revision: 294561 URL: https://svnweb.freebsd.org/changeset/base/294561 Log: Stop defining fdt_pic_table with ARM_INTRNG, it's unused. Modified: head/sys/arm/ti/ti_common.c Modified: head/sys/arm/ti/ti_common.c

Re: svn commit: r294543 - head/usr.sbin/ypldap

2016-01-22 Thread Bruce Evans
On Fri, 22 Jan 2016, Marcelo Araujo wrote: 2016-01-22 15:57 GMT+08:00 Bruce Evans : ... Unfortunately, getdtablesize() is still needed for arrays as used in yp*, and for anything using select(). If getdtablesize() is large then the arrays should be sparse or large fd's

svn commit: r294559 - head/sys/mips/nlm

2016-01-22 Thread Andrew Turner
Author: andrew Date: Fri Jan 22 12:00:56 2016 New Revision: 294559 URL: https://svnweb.freebsd.org/changeset/base/294559 Log: Stop calling fdt_immr_addr from the xlp startup code. It's used to set fdt_immr_{va,pa,size}, but these are not used outside a single ARM SoC. Modified:

svn commit: r294560 - head/etc/rc.d

2016-01-22 Thread Dag-Erling Smørgrav
Author: des Date: Fri Jan 22 12:14:08 2016 New Revision: 294560 URL: https://svnweb.freebsd.org/changeset/base/294560 Log: Do not generate RSA1 or DSA keys by default. Modified: head/etc/rc.d/sshd Modified: head/etc/rc.d/sshd

svn commit: r294610 - in head/sys: dev/cxgb/ulp/iw_cxgb dev/cxgbe/iw_cxgbe ofed/drivers/infiniband/core ofed/include/rdma

2016-01-22 Thread Navdeep Parhar
Author: np Date: Fri Jan 22 23:33:34 2016 New Revision: 294610 URL: https://svnweb.freebsd.org/changeset/base/294610 Log: Fix for iWARP servers that listen on INADDR_ANY. The iWARP Connection Manager (CM) on FreeBSD creates a TCP socket to represent an iWARP endpoint when the connection

svn commit: r294611 - head/usr.bin/whois

2016-01-22 Thread Tony Finch
Author: fanf Date: Sat Jan 23 00:28:18 2016 New Revision: 294611 URL: https://svnweb.freebsd.org/changeset/base/294611 Log: A lot of the cleverness in whois is no longer needed! The IANA whois server has the right referral information for domain names, IP addresses, and AS numbers, so

svn commit: r294617 - head/sys/conf

2016-01-22 Thread Adrian Chadd
Author: adrian Date: Sat Jan 23 05:27:55 2016 New Revision: 294617 URL: https://svnweb.freebsd.org/changeset/base/294617 Log: Now that the flashmap code knows about SPI flash, add it in builds. PR: kern/206227 Submitted by: Stanislav Galabov Modified:

Re: svn commit: r294535 - in head/sys/netinet: . cc tcp_stacks

2016-01-22 Thread Lawrence Stewart
On 01/23/16 05:18, Gleb Smirnoff wrote: > On Fri, Jan 22, 2016 at 06:13:54PM +1100, Lawrence Stewart wrote: > L> On 01/22/16 09:34, Gleb Smirnoff wrote: > L> > Author: glebius > L> > Date: Thu Jan 21 22:34:51 2016 > L> > New Revision: 294535 > L> > URL:

svn commit: r294616 - head/sys/geom

2016-01-22 Thread Adrian Chadd
Author: adrian Date: Sat Jan 23 05:26:29 2016 New Revision: 294616 URL: https://svnweb.freebsd.org/changeset/base/294616 Log: Teach the flashmap code about the SPI flash. PR: kern/206227 Submitted by: Stanislav Galabov Modified:

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

2016-01-22 Thread Lawrence Stewart
On 01/23/16 05:04, Gleb Smirnoff wrote: > On Fri, Jan 22, 2016 at 05:19:34PM +1100, Lawrence Stewart wrote: > L> On 01/22/16 09:53, Gleb Smirnoff wrote: > L> > Author: glebius > L> > Date: Thu Jan 21 22:53:12 2016 > L> > New Revision: 294536 > L> > URL:

svn commit: r294619 - stable/10/sys/security/audit

2016-01-22 Thread Konstantin Belousov
Author: kib Date: Sat Jan 23 07:35:29 2016 New Revision: 294619 URL: https://svnweb.freebsd.org/changeset/base/294619 Log: MFC r294137: Do not panic when the filesystem which carries the audit files, is unmounted and audit is active. Do not write to the suspended fs. Modified:

svn commit: r294618 - stable/10/sys/fs/devfs

2016-01-22 Thread Konstantin Belousov
Author: kib Date: Sat Jan 23 07:33:02 2016 New Revision: 294618 URL: https://svnweb.freebsd.org/changeset/base/294618 Log: MFC r293059: Hide transient EBADF errors caused by the parallel revoke(2) or forced unmount of devfs mounts, by restarting the failed syscall. Modified:

Re: svn commit: r294547 - head/sys/boot/kshim

2016-01-22 Thread Hans Petter Selasky
On 01/22/16 16:25, Conrad Meyer wrote: Is this incomplete? No, malloc() is a macro in this case, and the two last arguments are not used :-) --HPS ___ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To

svn commit: r294578 - head/sys/dev/ixgbe

2016-01-22 Thread Steven Hartland
Author: smh Date: Fri Jan 22 17:03:32 2016 New Revision: 294578 URL: https://svnweb.freebsd.org/changeset/base/294578 Log: Fix ix advertise value after media change When ifconfig sets media then the values displayed by the advertise_speed value are invalidated. Fix this by setting

svn commit: r294579 - head/usr.bin/whois

2016-01-22 Thread Benjamin Kaduk
Author: bjk (doc committer) Date: Fri Jan 22 17:17:27 2016 New Revision: 294579 URL: https://svnweb.freebsd.org/changeset/base/294579 Log: Bump .Dd after r294575 Modified: head/usr.bin/whois/whois.1 Modified: head/usr.bin/whois/whois.1

Re: svn commit: r294579 - head/usr.bin/whois

2016-01-22 Thread Tony Finch
Benjamin Kaduk wrote: > Bump .Dd after r294575 Thanks :-) Tony. -- f.anthony.n.finch http://dotat.at/ Portland, Plymouth, Biscay, Fitzroy, Sole: West or southwest, backing south, 5 to 7, decreasing 3 or 4 at times. Moderate or rough, becoming mainly very

svn commit: r294563 - head/crypto/openssh

2016-01-22 Thread Dag-Erling Smørgrav
Author: des Date: Fri Jan 22 13:13:46 2016 New Revision: 294563 URL: https://svnweb.freebsd.org/changeset/base/294563 Log: Instead of removing the NoneEnabled option, mark it as unsupported. (should have done this in r291198, but didn't think of it until now) Modified:

svn commit: r294564 - head/crypto/openssh

2016-01-22 Thread Dag-Erling Smørgrav
Author: des Date: Fri Jan 22 14:22:11 2016 New Revision: 294564 URL: https://svnweb.freebsd.org/changeset/base/294564 Log: r294563 was incomplete; re-add the client-side options as well. Modified: head/crypto/openssh/readconf.c Modified: head/crypto/openssh/readconf.c

svn commit: r294562 - head/sys/dev/fdt

2016-01-22 Thread Andrew Turner
Author: andrew Date: Fri Jan 22 13:09:43 2016 New Revision: 294562 URL: https://svnweb.freebsd.org/changeset/base/294562 Log: Only define fdt_pic_table on arm, and when not using intrng as this is the only place that uses it. Modified: head/sys/dev/fdt/fdt_common.h Modified:

svn commit: r294573 - in head/contrib/jemalloc/include/jemalloc: . internal

2016-01-22 Thread Ruslan Bukin
Author: br Date: Fri Jan 22 16:37:26 2016 New Revision: 294573 URL: https://svnweb.freebsd.org/changeset/base/294573 Log: Add configuration for RISC-V ISA. Reviewed by: emaste Sponsored by: DARPA, AFRL Sponsored by: HEIF5 Differential Revision:

svn commit: r294574 - in head/contrib/llvm/projects/libunwind: include src

2016-01-22 Thread Ruslan Bukin
Author: br Date: Fri Jan 22 16:42:06 2016 New Revision: 294574 URL: https://svnweb.freebsd.org/changeset/base/294574 Log: Add stubs for RISC-V ISA so libunwind can be compiled. Reviewed by: emaste Sponsored by: DARPA, AFRL Sponsored by: HEIF5 Differential Revision:

svn commit: r294575 - head/usr.bin/whois

2016-01-22 Thread Tony Finch
Author: fanf Date: Fri Jan 22 16:43:49 2016 New Revision: 294575 URL: https://svnweb.freebsd.org/changeset/base/294575 Log: A few `whois` usability improvements Look up AS numbers at ARIN. Handle more referral formats. Suppress spammy nameserver objects when querying the .com and

svn commit: r294576 - head/gnu/lib/libgcc

2016-01-22 Thread Ed Maste
Author: emaste Date: Fri Jan 22 16:47:36 2016 New Revision: 294576 URL: https://svnweb.freebsd.org/changeset/base/294576 Log: Drop HP libunwind (unw_*) functions from LLVM libunwind They are not needed for exception handling. Modified: head/gnu/lib/libgcc/Makefile Modified:

svn commit: r294577 - in head/contrib/compiler-rt/lib: builtins sanitizer_common

2016-01-22 Thread Ruslan Bukin
Author: br Date: Fri Jan 22 16:59:06 2016 New Revision: 294577 URL: https://svnweb.freebsd.org/changeset/base/294577 Log: Add support for RISC-V ISA. Reviewed by: emaste Sponsored by: DARPA, AFRL Sponsored by: HEIF5 Differential Revision:https://reviews.freebsd.org/D5021

Re: svn commit: r294547 - head/sys/boot/kshim

2016-01-22 Thread Conrad Meyer
Is this incomplete? On Thu, Jan 21, 2016 at 10:26 PM, Wojciech Macek wrote: > Author: wma > Date: Fri Jan 22 06:26:11 2016 > New Revision: 294547 > URL: https://svnweb.freebsd.org/changeset/base/294547 > > Log: > Provide busdma stubs for loader/kshim > > Simple bus

svn commit: r294569 - in stable/10: contrib/ntp contrib/ntp/html contrib/ntp/include contrib/ntp/libntp contrib/ntp/ntpd contrib/ntp/ntpdc contrib/ntp/ntpq contrib/ntp/ntpsnmpd contrib/ntp/scripts ...

2016-01-22 Thread Xin LI
Author: delphij Date: Fri Jan 22 15:55:21 2016 New Revision: 294569 URL: https://svnweb.freebsd.org/changeset/base/294569 Log: MFC r294554: MFV r294491: ntp 4.2.8p6. Security: CVE-2015-7973, CVE-2015-7974, CVE-2015-7975 Security: CVE-2015-7976, CVE-2015-7977, CVE-2015-7978

Re: svn commit: r294535 - in head/sys/netinet: . cc tcp_stacks

2016-01-22 Thread Bjoern A. Zeeb
> On 22 Jan 2016, at 15:21 , George Neville-Neil wrote: > > > > On 22 Jan 2016, at 2:13, Lawrence Stewart wrote: > >> Hi Gleb, >> >> On 01/22/16 09:34, Gleb Smirnoff wrote: >>> Author: glebius >>> Date: Thu Jan 21 22:34:51 2016 >>> New Revision: 294535 >>> URL:

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

2016-01-22 Thread Andrew Turner
Author: andrew Date: Fri Jan 22 16:35:01 2016 New Revision: 294572 URL: https://svnweb.freebsd.org/changeset/base/294572 Log: Stop including fdt_common.h in the arm64 code. We don't use anything from it, however may have relied on header pollution to pull in the needed headers through it

svn commit: r294565 - in head: lib/libc/gen tools/regression/posixsem2

2016-01-22 Thread Jilles Tjoelker
Author: jilles Date: Fri Jan 22 14:52:31 2016 New Revision: 294565 URL: https://svnweb.freebsd.org/changeset/base/294565 Log: sem: Don't free nameinfo that is still in list when open() fails. This bug could be reproduced easily by calling sem_open() with O_CREAT | O_EXCL on a semaphore

svn commit: r294567 - head/contrib/bsnmp/snmp_mibII

2016-01-22 Thread Bjoern A. Zeeb
Author: bz Date: Fri Jan 22 15:03:22 2016 New Revision: 294567 URL: https://svnweb.freebsd.org/changeset/base/294567 Log: Change the variable to a #define in order to make gcc happy which otherwise will complain about "variably modified 'alias' at file scope". Unbreaks the build on gcc

svn commit: r294570 - in stable/9: contrib/ntp contrib/ntp/html contrib/ntp/include contrib/ntp/libntp contrib/ntp/ntpd contrib/ntp/ntpdc contrib/ntp/ntpq contrib/ntp/ntpsnmpd contrib/ntp/scripts c...

2016-01-22 Thread Xin LI
Author: delphij Date: Fri Jan 22 15:56:35 2016 New Revision: 294570 URL: https://svnweb.freebsd.org/changeset/base/294570 Log: MFC r294554: MFV r294491: ntp 4.2.8p6. Security: CVE-2015-7973, CVE-2015-7974, CVE-2015-7975 Security: CVE-2015-7976, CVE-2015-7977, CVE-2015-7978

svn commit: r294571 - in head/usr.bin/xlint: arch/riscv lint1

2016-01-22 Thread Ruslan Bukin
Author: br Date: Fri Jan 22 16:32:22 2016 New Revision: 294571 URL: https://svnweb.freebsd.org/changeset/base/294571 Log: Add support for RISC-V ISA. Reviewed by: andrew Sponsored by: DARPA, AFRL Sponsored by: HEIF5 Differential Revision:https://reviews.freebsd.org/D5014

Re: svn commit: r294535 - in head/sys/netinet: . cc tcp_stacks

2016-01-22 Thread hiren panchasara
On 01/22/16 at 04:06P, Bjoern A. Zeeb wrote: > > > On 22 Jan 2016, at 15:21 , George Neville-Neil > > wrote: > > > > > > > > On 22 Jan 2016, at 2:13, Lawrence Stewart wrote: > > > >> Hi Gleb, > >> > >> On 01/22/16 09:34, Gleb Smirnoff wrote: > >>> Author: glebius >

svn commit: r294615 - in head: sbin/ifconfig share/man/man4 sys/net

2016-01-22 Thread Marcelo Araujo
Author: araujo Date: Sat Jan 23 04:18:44 2016 New Revision: 294615 URL: https://svnweb.freebsd.org/changeset/base/294615 Log: Add an IOCTL rr_limit to let users fine tuning the number of packets to be sent using roundrobin protocol and set a better granularity and distribution among the

Re: svn commit: r294535 - in head/sys/netinet: . cc tcp_stacks

2016-01-22 Thread Lawrence Stewart
On 01/23/16 03:06, Bjoern A. Zeeb wrote: > >> On 22 Jan 2016, at 15:21 , George Neville-Neil wrote: >> >> >> >> On 22 Jan 2016, at 2:13, Lawrence Stewart wrote: >> >>> Hi Gleb, >>> >>> On 01/22/16 09:34, Gleb Smirnoff wrote: Author: glebius Date: Thu Jan 21

svn commit: r294614 - stable/10/sys/kern

2016-01-22 Thread John Baldwin
Author: jhb Date: Sat Jan 23 01:21:11 2016 New Revision: 294614 URL: https://svnweb.freebsd.org/changeset/base/294614 Log: MFC 292892: Call kern_thr_exit() instead of duplicating it. This code is missing the racct_subr() call from kern_thr_exit() and would require further code

svn commit: r294613 - head/usr.bin/whois

2016-01-22 Thread Tony Finch
Author: fanf Date: Sat Jan 23 01:20:58 2016 New Revision: 294613 URL: https://svnweb.freebsd.org/changeset/base/294613 Log: Fix a regression in the .de and .dk whois special cases Ensure the special cases trigger whether we come via a referral or via the -c option. Match host names

svn commit: r294612 - in stable/10: share/man/man9 sys/fs/devfs sys/sys

2016-01-22 Thread John Baldwin
Author: jhb Date: Sat Jan 23 01:02:28 2016 New Revision: 294612 URL: https://svnweb.freebsd.org/changeset/base/294612 Log: MFC 286974,291653: 286974: Remove reference to non-existent kern_openat(9). 291653: The cdevpriv_dtr_t typedef was not able to be used in a function prototype