Re: svn commit: r279603 - in head: bin/rcp usr.bin/rlogin usr.bin/rsh

2015-03-10 Thread Benjamin Kaduk
On Sun, 8 Mar 2015, Slawa Olhovchenkov wrote: > On Thu, Mar 05, 2015 at 08:14:59PM -0500, Benjamin Kaduk wrote: > > > On Thu, 5 Mar 2015, Slawa Olhovchenkov wrote: > > > > > On Thu, Mar 05, 2015 at 10:11:43AM -0500, Benjamin Kaduk wrote: > > > > > > > On Thu, Mar 5, 2015 at 9:40 AM, Slawa Olhovche

svn commit: r279869 - head/cddl/contrib/opensolaris/common/ctf

2015-03-10 Thread Mark Johnston
Author: markj Date: Wed Mar 11 00:01:39 2015 New Revision: 279869 URL: https://svnweb.freebsd.org/changeset/base/279869 Log: When copying a type from a source CTF container to a destination container, ctf_add_type() first performs a by-name lookup of the type in the destination container. If

svn commit: r279868 - in head/sys: dev/pci kern sys

2015-03-10 Thread Ryan Stone
Author: rstone Date: Tue Mar 10 23:27:13 2015 New Revision: 279868 URL: https://svnweb.freebsd.org/changeset/base/279868 Log: Fix SR-IOV passthrough devices to allow ppt to attach A late change to the SR-IOV infrastructure broke passthrough of VFs. device_set_devclass() was being used to

svn commit: r279867 - head/sys/netinet

2015-03-10 Thread Michael Tuexen
Author: tuexen Date: Tue Mar 10 22:38:10 2015 New Revision: 279867 URL: https://svnweb.freebsd.org/changeset/base/279867 Log: Keep track on the socket lock state. This fixes a bug showing up on Mac OS X. MFC after: 3 days Modified: head/sys/netinet/sctputil.c Modified: head/sys/netine

svn commit: r279865 - head/sys/ofed/drivers/net/mlx4

2015-03-10 Thread Hans Petter Selasky
Author: hselasky Date: Tue Mar 10 21:17:10 2015 New Revision: 279865 URL: https://svnweb.freebsd.org/changeset/base/279865 Log: Ensure setting promiscious mode when a network interface is up, is always non-blocking by not locking a SX type of mutex. Sponsored by: Mellanox Technologies M

svn commit: r279862 - head/cddl/contrib/opensolaris/common/ctf

2015-03-10 Thread Mark Johnston
Author: markj Date: Tue Mar 10 20:52:03 2015 New Revision: 279862 URL: https://svnweb.freebsd.org/changeset/base/279862 Log: ctf_discard(): fetch the next list element before restarting the loop. If we end up skipping a dynamic type because it has already been committed to the container, we

svn commit: r279861 - head/cddl/contrib/opensolaris/tools/ctf/cvt

2015-03-10 Thread Mark Johnston
Author: markj Date: Tue Mar 10 20:43:16 2015 New Revision: 279861 URL: https://svnweb.freebsd.org/changeset/base/279861 Log: MFV r279822: This merge is effectively a no-op since parts of it are already present in FreeBSD, and the rest is incorrect since gelf_newehdr(3) and gelf_newphdr(

Re: svn commit: r279828 - head/sys/dev/cadence

2015-03-10 Thread Ian Lepore
On Tue, 2015-03-10 at 13:33 -0600, Scott Long wrote: > > On Mar 9, 2015, at 4:39 PM, Ian Lepore wrote: > > > > Author: ian > > Date: Mon Mar 9 22:39:58 2015 > > New Revision: 279828 > > URL: https://svnweb.freebsd.org/changeset/base/279828 > > > > Log: > > Use the new ifnet API. Also, allocat

svn commit: r279860 - head/sys/dev/ixl

2015-03-10 Thread Jack F Vogel
Author: jfv Date: Tue Mar 10 19:55:43 2015 New Revision: 279860 URL: https://svnweb.freebsd.org/changeset/base/279860 Log: Replace the DEV_NETMAP code that accidentally got removed in the last commit. MFC after: 1 week Modified: head/sys/dev/ixl/if_ixl.c head/sys/dev/ixl/ixl_txrx.c

Re: svn commit: r279828 - head/sys/dev/cadence

2015-03-10 Thread Scott Long via svn-src-head
> On Mar 9, 2015, at 4:39 PM, Ian Lepore wrote: > > Author: ian > Date: Mon Mar 9 22:39:58 2015 > New Revision: 279828 > URL: https://svnweb.freebsd.org/changeset/base/279828 > > Log: > Use the new ifnet API. Also, allocate bus_dma_maps as needed instead of > pre-allocating them all at star

Re: svn commit: r279856 - in head/lib/msun: man src

2015-03-10 Thread Bruce Evans
On Tue, 10 Mar 2015, Steve Kargl wrote: Log: According to POSIX.1-2008, the Bessel functions of second kind should raise a divide-by-zero floating point exception for x = +-0 and an invalid floating point exception for x < 0 including x = -Inf. Update the code to raise the exception and upd

svn commit: r279858 - head/sys/dev/ixl

2015-03-10 Thread Jack F Vogel
Author: jfv Date: Tue Mar 10 19:17:40 2015 New Revision: 279858 URL: https://svnweb.freebsd.org/changeset/base/279858 Log: This delta introduces SRIOV support, thanks to Ryan Stone of Sandvine for adding this major feature to the driver. Secondly, this updates the base driver with new 20G de

Re: svn commit: r279828 - head/sys/dev/cadence

2015-03-10 Thread Ian Lepore
On Tue, 2015-03-10 at 13:25 +0300, Gleb Smirnoff wrote: > On Mon, Mar 09, 2015 at 10:39:59PM +, Ian Lepore wrote: > I> Author: ian > I> Date: Mon Mar 9 22:39:58 2015 > I> New Revision: 279828 > I> URL: https://svnweb.freebsd.org/changeset/base/279828 > I> > I> Log: > I> Use the new ifnet AP

svn commit: r279857 - head/share/misc

2015-03-10 Thread Eric van Gyzen
Author: vangyzen Date: Tue Mar 10 17:45:46 2015 New Revision: 279857 URL: https://svnweb.freebsd.org/changeset/base/279857 Log: Add myself to the src committers graph, with kib as my mentor. Approved by:kib (mentor) Modified: head/share/misc/committers-src.dot Modified: head/share/m

svn commit: r279856 - in head/lib/msun: man src

2015-03-10 Thread Steve Kargl
Author: kargl Date: Tue Mar 10 17:10:54 2015 New Revision: 279856 URL: https://svnweb.freebsd.org/changeset/base/279856 Log: According to POSIX.1-2008, the Bessel functions of second kind should raise a divide-by-zero floating point exception for x = +-0 and an invalid floating point except

svn commit: r279855 - head/sys/dev/vt/hw/ofwfb

2015-03-10 Thread Nathan Whitehorn
Author: nwhitehorn Date: Tue Mar 10 17:04:11 2015 New Revision: 279855 URL: https://svnweb.freebsd.org/changeset/base/279855 Log: Let unchangeable 8-bit frame buffers have vaguely correct colors. MFC after:2 weeks Modified: head/sys/dev/vt/hw/ofwfb/ofwfb.c Modified: head/sys/dev/vt/

Re: svn commit: r279842 - head/usr.bin/procstat

2015-03-10 Thread Adrian Chadd
o this will be helpful. Thanks! -a ___ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Re: svn commit: r279837 - head/sys/arm/conf

2015-03-10 Thread Ian Lepore
On Tue, 2015-03-10 at 09:33 +0100, Ronald Klop wrote: > Hi, > > Does this make sense on arm4/arm5 like SHEEVAPLUG also? > > Ronald. > When I asked some other arm developers about doing this change, there was a request to not remove the overrides from all the armv4/5 configs, but I think for the

svn commit: r279852 - head/sys/dev/iicbus

2015-03-10 Thread Luiz Otavio O Souza
Author: loos Date: Tue Mar 10 14:55:05 2015 New Revision: 279852 URL: https://svnweb.freebsd.org/changeset/base/279852 Log: Fix off-by-one bugs. Spotted by: rpaulo (on another review) Modified: head/sys/dev/iicbus/ds3231.c head/sys/dev/iicbus/lm75.c Modified: head/sys/dev/iicbus/ds3

svn commit: r279850 - head/sys/arm/conf

2015-03-10 Thread Ian Lepore
Author: ian Date: Tue Mar 10 14:36:51 2015 New Revision: 279850 URL: https://svnweb.freebsd.org/changeset/base/279850 Log: Remove MODULES_OVERRIDE="" for Marvel-based armv5 systems. Also add some #NO_UNIVERSE to configs that essentially duplicate DB-88F6XXX. Modified: head/sys/arm/conf/D

svn commit: r279851 - head/usr.sbin/autofs

2015-03-10 Thread Edward Tomasz Napierala
Author: trasz Date: Tue Mar 10 14:43:07 2015 New Revision: 279851 URL: https://svnweb.freebsd.org/changeset/base/279851 Log: Fix typo. MFC after:1 month Sponsored by: The FreeBSD Foundation Modified: head/usr.sbin/autofs/automountd.8 Modified: head/usr.sbin/autofs/automountd.8 ===

svn commit: r279849 - head/usr.bin/m4

2015-03-10 Thread Baptiste Daroussin
Author: bapt Date: Tue Mar 10 14:22:28 2015 New Revision: 279849 URL: https://svnweb.freebsd.org/changeset/base/279849 Log: Add OpenBSD copyright for reallocarray Move the function at the bottom of the misc.c file to clearly state the copyright only stand for this function PR:

Re: svn commit: r279699 - in head/sys: amd64/amd64 i386/i386

2015-03-10 Thread John Baldwin
On Monday, March 09, 2015 07:42:52 PM Konstantin Belousov wrote: > On Fri, Mar 06, 2015 at 08:34:28PM +, John Baldwin wrote: > > Author: jhb > > Date: Fri Mar 6 20:34:28 2015 > > New Revision: 279699 > > URL: https://svnweb.freebsd.org/changeset/base/279699 > > > > Log: > > Only schedule in

Re: svn commit: r279814 - head/sys/arm/conf

2015-03-10 Thread Warner Losh
> On Mar 10, 2015, at 5:02 AM, Peter Jeremy wrote: > > On 2015-Mar-09 09:58:36 -0600, Ian Lepore wrote: >> Can we not do this, and instead just build all modules? I'm not sure >> why we eliminate or override modules on some armv6 socs and not on >> others, but I think it's a concept that's pas

svn commit: r279847 - head/sys/vm

2015-03-10 Thread Gleb Smirnoff
Author: glebius Date: Tue Mar 10 13:06:54 2015 New Revision: 279847 URL: https://svnweb.freebsd.org/changeset/base/279847 Log: Fix function name in comment. Modified: head/sys/vm/vnode_pager.c Modified: head/sys/vm/vnode_pager.c ===

svn commit: r279846 - head/usr.sbin/autofs

2015-03-10 Thread Edward Tomasz Napierala
Author: trasz Date: Tue Mar 10 12:25:05 2015 New Revision: 279846 URL: https://svnweb.freebsd.org/changeset/base/279846 Log: Properly pass options for direct maps. MFC after:1 month Sponsored by: The FreeBSD Foundation Modified: head/usr.sbin/autofs/automount.c head/usr.sbin/auto

svn commit: r279845 - head/usr.sbin/autofs

2015-03-10 Thread Edward Tomasz Napierala
Author: trasz Date: Tue Mar 10 11:59:33 2015 New Revision: 279845 URL: https://svnweb.freebsd.org/changeset/base/279845 Log: Fix handling of direct maps, broken in r275756. Previously, running automount(8) would unmount direct map trigger nodes every second time. MFC after:1 month

Re: svn commit: r279814 - head/sys/arm/conf

2015-03-10 Thread Peter Jeremy
On 2015-Mar-09 09:58:36 -0600, Ian Lepore wrote: >Can we not do this, and instead just build all modules? I'm not sure >why we eliminate or override modules on some armv6 socs and not on >others, but I think it's a concept that's past it's sell-by date now. >If there are a few specific modules th

Re: svn commit: r279699 - in head/sys: amd64/amd64 i386/i386

2015-03-10 Thread Slawa Olhovchenkov
On Mon, Mar 09, 2015 at 07:42:52PM +0200, Konstantin Belousov wrote: > On Fri, Mar 06, 2015 at 08:34:28PM +, John Baldwin wrote: > > Author: jhb > > Date: Fri Mar 6 20:34:28 2015 > > New Revision: 279699 > > URL: https://svnweb.freebsd.org/changeset/base/279699 > > > > Log: > > Only schedu

Re: svn commit: r279764 - head/sys/vm

2015-03-10 Thread David Chisnall
On 10 Mar 2015, at 10:18, Konstantin Belousov wrote: > > Because you cannot grep for the panic string when __func__ is used. The userspace assert uses __func__, __FILE__ and __LINE__, which means that you never need to grep the source code to find out where the assert came from: the assertion

Re: svn commit: r279764 - head/sys/vm

2015-03-10 Thread Gleb Smirnoff
On Tue, Mar 10, 2015 at 12:18:13PM +0200, Konstantin Belousov wrote: K> On Tue, Mar 10, 2015 at 01:01:41PM +0300, Gleb Smirnoff wrote: K> > On Sun, Mar 08, 2015 at 02:13:47AM +, Konstantin Belousov wrote: K> > K> Author: kib K> > K> Date: Sun Mar 8 02:13:46 2015 K> > K> New Revision: 279764 K>

Re: svn commit: r279828 - head/sys/dev/cadence

2015-03-10 Thread Gleb Smirnoff
On Mon, Mar 09, 2015 at 10:39:59PM +, Ian Lepore wrote: I> Author: ian I> Date: Mon Mar 9 22:39:58 2015 I> New Revision: 279828 I> URL: https://svnweb.freebsd.org/changeset/base/279828 I> I> Log: I> Use the new ifnet API. Also, allocate bus_dma_maps as needed instead of I> pre-allocating

Re: svn commit: r279819 - head/sys/dev/hyperv/netvsc

2015-03-10 Thread Gleb Smirnoff
On Mon, Mar 09, 2015 at 08:11:17PM +, Xin LI wrote: X> Author: delphij X> Date: Mon Mar 9 20:11:16 2015 X> New Revision: 279819 X> URL: https://svnweb.freebsd.org/changeset/base/279819 X> X> Log: X> Fix CARP when in use in a HyperV environment: X> X>- Bump link state when stopping or

Re: svn commit: r279764 - head/sys/vm

2015-03-10 Thread Konstantin Belousov
On Tue, Mar 10, 2015 at 01:01:41PM +0300, Gleb Smirnoff wrote: > On Sun, Mar 08, 2015 at 02:13:47AM +, Konstantin Belousov wrote: > K> Author: kib > K> Date: Sun Mar 8 02:13:46 2015 > K> New Revision: 279764 > K> URL: https://svnweb.freebsd.org/changeset/base/279764 > K> > K> Log: > K> Fix

Re: svn commit: r279764 - head/sys/vm

2015-03-10 Thread Gleb Smirnoff
On Sun, Mar 08, 2015 at 02:13:47AM +, Konstantin Belousov wrote: K> Author: kib K> Date: Sun Mar 8 02:13:46 2015 K> New Revision: 279764 K> URL: https://svnweb.freebsd.org/changeset/base/279764 K> K> Log: K> Fix function name in the panic message. Why not use "%s, __func__" always and neve

svn commit: r279843 - head/usr.sbin/autofs

2015-03-10 Thread Edward Tomasz Napierala
Author: trasz Date: Tue Mar 10 09:53:15 2015 New Revision: 279843 URL: https://svnweb.freebsd.org/changeset/base/279843 Log: Refactor. MFC after:1 month Sponsored by: The FreeBSD Foundation Modified: head/usr.sbin/autofs/common.c Modified: head/usr.sbin/autofs/common.c ===

svn commit: r279842 - head/usr.bin/procstat

2015-03-10 Thread Scott Long
Author: scottl Date: Tue Mar 10 09:41:48 2015 New Revision: 279842 URL: https://svnweb.freebsd.org/changeset/base/279842 Log: Implement basic cpuset reporting in procstat via the -S flag. Obtained from:Netflix, Inc. MFC after:3 days Added: head/usr.bin/procstat/procstat_cs.

svn commit: r279841 - head/sys/netinet

2015-03-10 Thread Michael Tuexen
Author: tuexen Date: Tue Mar 10 09:16:31 2015 New Revision: 279841 URL: https://svnweb.freebsd.org/changeset/base/279841 Log: Fix a typo. MFC after: 1 week Modified: head/sys/netinet/sctp_timer.c Modified: head/sys/netinet/sctp_timer.c ===

Re: svn commit: r279837 - head/sys/arm/conf

2015-03-10 Thread Ronald Klop
Hi, Does this make sense on arm4/arm5 like SHEEVAPLUG also? Ronald. On Tue, 10 Mar 2015 03:33:52 +0100, Ian Lepore wrote: Author: ian Date: Tue Mar 10 02:33:51 2015 New Revision: 279837 URL: https://svnweb.freebsd.org/changeset/base/279837 Log: Remove MODULES_OVERRIDE="" and WITHOUT_MODU