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: head/usr.sbin/ypldap/yp

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 Modifi

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 201

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 dis

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: 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 removed entirely, and

commit message 294534

2016-01-22 Thread Julian Elischer
On 22/01/2016 6:24 AM, Gleb Smirnoff wrote: Author: glebius Date: Thu Jan 21 22:24:20 2016 New Revision: 294534 URL: https://svnweb.freebsd.org/changeset/base/294534 Log: Cleanup TCP files from unnecessary interface related includes. Modified: head/sys/netinet/cc/cc.c head/sys/netinet/

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 should not be actually u

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 select(). If getdtablesize() is large then the >>>

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: head/sys/mip

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: 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

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: head/sys/dev/f

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: head/crypto/openssh/s

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: 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 th

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 platf

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 historica

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 space stubs require the

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-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head T

Re: commit message 294534

2016-01-22 Thread Gleb Smirnoff
On Fri, Jan 22, 2016 at 06:35:29PM +0800, Julian Elischer wrote: J> On 22/01/2016 6:24 AM, Gleb Smirnoff wrote: J> > Author: glebius J> > Date: Thu Jan 21 22:24:20 2016 J> > New Revision: 294534 J> > URL: https://svnweb.freebsd.org/changeset/base/294534 J> > J> > Log: J> >Cleanup TCP files from

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: https://svnweb.freebsd.org/cha

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 Add

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: 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:https://reviews.freebsd.org/D502

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:https://rev

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: head/gnu/lib

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 Mod

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 th

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.finchhttp://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 rough, occasionally high at first

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 > >>> Date: Thu Jan 21 22:3

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 s

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: head/bin/sh/tests/built

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 mea

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 on arm, and when not

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: head/gnu/lib/libgcc/Makef

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

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: 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: 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 Modified:

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: b

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 derefere

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: head/lib/libc/str

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 we

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: 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 head/lib/libe

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 configuration - unl

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 servers which do not support

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 you actually need these?

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 +diffie-hellman-group1-sha1 > > Do

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 i

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 who

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 case-i

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 inte

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 22:34:51 2016 New Revisi

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: head/sys/geom/geom_flashmap.c Modified: head/

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: head/sys/conf/files Mo

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: https://svnweb.freebsd.org/changeset/base/294

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: https://svnweb.freebsd.org/changeset/base/294