Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Julian Elischer
On 11/3/14, 3:46 PM, Mateusz Guzik wrote: Author: mjg Date: Mon Nov 3 07:46:51 2014 New Revision: 274017 URL: https://svnweb.freebsd.org/changeset/base/274017 Log: Provide an on-stack temporary buffer for small ioctl requests. I'm not sure I like this. We don't know how many more levels of

Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Julian Elischer
On 11/3/14, 4:21 PM, Julian Elischer wrote: On 11/3/14, 3:46 PM, Mateusz Guzik wrote: Author: mjg Date: Mon Nov 3 07:46:51 2014 New Revision: 274017 URL: https://svnweb.freebsd.org/changeset/base/274017 Log: Provide an on-stack temporary buffer for small ioctl requests. I'm not sure I

Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Hans Petter Selasky
On 11/03/14 09:23, Julian Elischer wrote: On 11/3/14, 4:21 PM, Julian Elischer wrote: On 11/3/14, 3:46 PM, Mateusz Guzik wrote: Author: mjg Date: Mon Nov 3 07:46:51 2014 New Revision: 274017 URL: https://svnweb.freebsd.org/changeset/base/274017 Log: Provide an on-stack temporary buffer

Re: svn commit: r273958 - head/sys/dev/random

2014-11-03 Thread Xin Li
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 11/2/14 5:13 PM, Bruce Evans wrote: % - % -KASSERT(random_adaptor != NULL, (No active random adaptor in %s, __func__)); % } % % void Lots of style bugs (long lines, use of the __func__ obfuscation, and general verboseness). What

Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Bruce Simpson
On Mon, 3 Nov 2014, at 08:21, Julian Elischer wrote: I'm open to being persuaded but I think we need to have a discussion about stack usage. We used to say that anything greater that, say 64 bytes should probably be allocated. I have to admit the level of stack usage in my current $DAYJOB

svn commit: r274020 - head/sys/dev/usb

2014-11-03 Thread Hans Petter Selasky
Author: hselasky Date: Mon Nov 3 09:02:09 2014 New Revision: 274020 URL: https://svnweb.freebsd.org/changeset/base/274020 Log: Reduce boot verbosity. MFC: 3 days Modified: head/sys/dev/usb/usb_hub.c Modified: head/sys/dev/usb/usb_hub.c

Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Mateusz Guzik
On Mon, Nov 03, 2014 at 04:21:02PM +0800, Julian Elischer wrote: On 11/3/14, 3:46 PM, Mateusz Guzik wrote: Author: mjg Date: Mon Nov 3 07:46:51 2014 New Revision: 274017 URL: https://svnweb.freebsd.org/changeset/base/274017 Log: Provide an on-stack temporary buffer for small ioctl

svn commit: r274021 - head/tests/sys

2014-11-03 Thread Garrett Cooper
Author: ngie Date: Mon Nov 3 09:17:09 2014 New Revision: 274021 URL: https://svnweb.freebsd.org/changeset/base/274021 Log: Remove explicit KYUAFILE=yes from tests/sys/Makefile This causes the directory traversing Kyuafile to be installed, which in turn causes tests/sys/pjdfstest to

Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Hans Petter Selasky
On 11/03/14 10:08, Mateusz Guzik wrote: On Mon, Nov 03, 2014 at 04:21:02PM +0800, Julian Elischer wrote: On 11/3/14, 3:46 PM, Mateusz Guzik wrote: Author: mjg Date: Mon Nov 3 07:46:51 2014 New Revision: 274017 URL: https://svnweb.freebsd.org/changeset/base/274017 Log: Provide an on-stack

Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Mateusz Guzik
On Mon, Nov 03, 2014 at 09:29:06AM +0100, Hans Petter Selasky wrote: On 11/03/14 09:23, Julian Elischer wrote: On 11/3/14, 4:21 PM, Julian Elischer wrote: On 11/3/14, 3:46 PM, Mateusz Guzik wrote: Author: mjg Date: Mon Nov 3 07:46:51 2014 New Revision: 274017 URL:

svn commit: r274022 - head/usr.sbin/pw/tests

2014-11-03 Thread Garrett Cooper
Author: ngie Date: Mon Nov 3 09:26:39 2014 New Revision: 274022 URL: https://svnweb.freebsd.org/changeset/base/274022 Log: Require root when running the pw_delete and pw_modify test programs (pw(8) requires it) Modified: head/usr.sbin/pw/tests/Makefile Modified:

Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Hans Petter Selasky
On 11/03/14 10:21, Mateusz Guzik wrote: On Mon, Nov 03, 2014 at 09:29:06AM +0100, Hans Petter Selasky wrote: On 11/03/14 09:23, Julian Elischer wrote: On 11/3/14, 4:21 PM, Julian Elischer wrote: On 11/3/14, 3:46 PM, Mateusz Guzik wrote: Author: mjg Date: Mon Nov 3 07:46:51 2014 New

svn commit: r274023 - head/sys/kern

2014-11-03 Thread Konstantin Belousov
Author: kib Date: Mon Nov 3 10:01:56 2014 New Revision: 274023 URL: https://svnweb.freebsd.org/changeset/base/274023 Log: When other end of the pipe closed during the write, but some bytes were written, return short write instead of EPIPE. Update comment. Discussed with: bde

Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Konstantin Belousov
On Mon, Nov 03, 2014 at 10:21:32AM +0100, Mateusz Guzik wrote: On Mon, Nov 03, 2014 at 09:29:06AM +0100, Hans Petter Selasky wrote: On 11/03/14 09:23, Julian Elischer wrote: On 11/3/14, 4:21 PM, Julian Elischer wrote: On 11/3/14, 3:46 PM, Mateusz Guzik wrote: Author: mjg Date: Mon Nov

Re: svn commit: r273966 - in head: share/man/man9 sys/kern sys/sys

2014-11-03 Thread Attilio Rao
On Sun, Nov 2, 2014 at 11:49 PM, Konstantin Belousov kostik...@gmail.com wrote: On Sun, Nov 02, 2014 at 11:37:57PM +0100, Attilio Rao wrote: On Sun, Nov 2, 2014 at 10:38 PM, Konstantin Belousov kostik...@gmail.com wrote: On Sun, Nov 02, 2014 at 10:17:26PM +0100, Attilio Rao wrote: I think

svn commit: r274031 - head/sys/dev/drm2

2014-11-03 Thread Jean-Sebastien Pedron
Author: dumbbell Date: Mon Nov 3 10:42:27 2014 New Revision: 274031 URL: https://svnweb.freebsd.org/changeset/base/274031 Log: drm: Take vt(4) default mode from loader tunables By default, vt(4) gets the preferred mode from DRM, when using a DRM video driver as its backend. The

svn commit: r274033 - head/sys/dev/iscsi

2014-11-03 Thread Edward Tomasz Napierala
Author: trasz Date: Mon Nov 3 11:05:23 2014 New Revision: 274033 URL: https://svnweb.freebsd.org/changeset/base/274033 Log: s/icl_pdu_new/icl_pdu_new_empty/g; no functional changes. Sponsored by: The FreeBSD Foundation Modified: head/sys/dev/iscsi/icl.c Modified:

svn commit: r274035 - in head/sys/dev/sound: isa midi pci pcm

2014-11-03 Thread Baptiste Daroussin
Author: bapt Date: Mon Nov 3 11:11:45 2014 New Revision: 274035 URL: https://svnweb.freebsd.org/changeset/base/274035 Log: Remove check for obsolete FreeBSD versions PR: 194517 Submitted by: François Tigeot ftig...@wolfpond.org Modified: head/sys/dev/sound/isa/gusc.c

svn commit: r274036 - in head/sys: cam/ctl dev/iscsi

2014-11-03 Thread Edward Tomasz Napierala
Author: trasz Date: Mon Nov 3 11:15:51 2014 New Revision: 274036 URL: https://svnweb.freebsd.org/changeset/base/274036 Log: s/icl_pdu_new_bhs/icl_pdu_new/; no functional changes, just a little nicer code. Sponsored by: The FreeBSD Foundation Modified:

Re: svn commit: r273966 - in head: share/man/man9 sys/kern sys/sys

2014-11-03 Thread Konstantin Belousov
On Mon, Nov 03, 2014 at 11:34:48AM +0100, Attilio Rao wrote: On Sun, Nov 2, 2014 at 11:49 PM, Konstantin Belousov kostik...@gmail.com wrote: On Sun, Nov 02, 2014 at 11:37:57PM +0100, Attilio Rao wrote: On Sun, Nov 2, 2014 at 10:38 PM, Konstantin Belousov kostik...@gmail.com wrote: On

svn commit: r274038 - head/sys/kern

2014-11-03 Thread Konstantin Belousov
Author: kib Date: Mon Nov 3 11:29:08 2014 New Revision: 274038 URL: https://svnweb.freebsd.org/changeset/base/274038 Log: Clean up confusing comment. Move it to the place of code which is talked about. Explain where the mentioned trampoline located (usermode), and the fact that attempt

svn commit: r274040 - in head/sys: conf dev/agp

2014-11-03 Thread Konstantin Belousov
Author: kib Date: Mon Nov 3 11:49:35 2014 New Revision: 274040 URL: https://svnweb.freebsd.org/changeset/base/274040 Log: agp_intel.c provides support for AGP on Intel chipsets from 440/BX to 875. This intersects with the agp_i810.c, which supports all Intels from i810 to Core i5/7. Both

svn commit: r274045 - head/usr.sbin/bhyve

2014-11-03 Thread Tycho Nightingale
Author: tychon Date: Mon Nov 3 12:55:31 2014 New Revision: 274045 URL: https://svnweb.freebsd.org/changeset/base/274045 Log: If the start bit, PxCMD.ST, is cleared and nothing is in-flight then PxCI, PxSACT, PxCMD.CCS and PxCMD.CR should be 0. Reviewed by: grehan Modified:

svn commit: r274046 - in head/sys: netinet sys

2014-11-03 Thread Hans Petter Selasky
Author: hselasky Date: Mon Nov 3 13:01:58 2014 New Revision: 274046 URL: https://svnweb.freebsd.org/changeset/base/274046 Log: Restore spares used in struct tcpcb and bump __FreeBSD_version to indicate need for kernel module re-compilation. Sponsored by: Mellanox Technologies Modified:

svn commit: r274047 - head/sys/net

2014-11-03 Thread Hans Petter Selasky
Author: hselasky Date: Mon Nov 3 13:02:58 2014 New Revision: 274047 URL: https://svnweb.freebsd.org/changeset/base/274047 Log: Clarify TSO segment limit comment and remove two TABs to make lines a bit shorter. Sponsored by: Mellanox Technologies Modified: head/sys/net/if_var.h

svn commit: r274048 - head/sys/sys

2014-11-03 Thread Mateusz Guzik
Author: mjg Date: Mon Nov 3 13:14:34 2014 New Revision: 274048 URL: https://svnweb.freebsd.org/changeset/base/274048 Log: Fix misplaced read memory barrier in seq. Impact on capability races was small: it was possible to get a spurious ENOTCAPABLE (early return), but it was not possible

svn commit: r274049 - head/sys/dev/drm2

2014-11-03 Thread Jean-Sebastien Pedron
Author: dumbbell Date: Mon Nov 3 14:35:07 2014 New Revision: 274049 URL: https://svnweb.freebsd.org/changeset/base/274049 Log: drm: When reading connector mode tunables, list connectors ... and their associated tunables. This gives a way to know the list of available connectors, no

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

2014-11-03 Thread Jean-Sebastien Pedron
Author: dumbbell Date: Mon Nov 3 14:57:41 2014 New Revision: 274050 URL: https://svnweb.freebsd.org/changeset/base/274050 Log: vt(4): Document kern.vt.fb.default_mode and kern.vt.fb.modes.* Those tunables are used to set a specific mode in vt(4) instead of using the default mode.

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

2014-11-03 Thread Jean-Sebastien Pedron
Author: dumbbell Date: Mon Nov 3 15:25:48 2014 New Revision: 274051 URL: https://svnweb.freebsd.org/changeset/base/274051 Log: vt(4): Improve the description of kern.vt.fb.modes.$connector Differential Revision:https://reviews.freebsd.org/D1098 Submitted by: emaste@ MFC after:

svn commit: r274052 - head/tests/lib

2014-11-03 Thread Garrett Cooper
Author: ngie Date: Mon Nov 3 15:40:49 2014 New Revision: 274052 URL: https://svnweb.freebsd.org/changeset/base/274052 Log: Remove unused tests/lib directory MFC after: 1 week Deleted: head/tests/lib/ ___ svn-src-head@freebsd.org mailing list

Re: svn commit: r273958 - head/sys/dev/random

2014-11-03 Thread Bruce Evans
On Mon, 3 Nov 2014, Konstantin Belousov wrote: On Mon, Nov 03, 2014 at 11:53:26AM +1100, Bruce Evans wrote: On Sun, 2 Nov 2014, Ian Lepore wrote: On Sun, 2014-11-02 at 12:27 -0800, Xin Li wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hi, Mark, I'd like to propose the attached

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

2014-11-03 Thread Jean-Sebastien Pedron
Author: dumbbell Date: Mon Nov 3 16:01:44 2014 New Revision: 274053 URL: https://svnweb.freebsd.org/changeset/base/274053 Log: vt(4): Start new sentences on their own lines Submitted by: brueffer@ MFC after:1 week Modified: head/share/man/man4/vt.4 Modified:

svn commit: r274054 - head/sys/i386/xen

2014-11-03 Thread John Baldwin
Author: jhb Date: Mon Nov 3 16:31:31 2014 New Revision: 274054 URL: https://svnweb.freebsd.org/changeset/base/274054 Log: Fix XEN kernel build. Pointy hat to:jhb Modified: head/sys/i386/xen/mp_machdep.c Modified: head/sys/i386/xen/mp_machdep.c

svn commit: r274055 - head/sys/dev/virtio/console

2014-11-03 Thread Bryan Venteicher
Author: bryanv Date: Mon Nov 3 16:57:01 2014 New Revision: 274055 URL: https://svnweb.freebsd.org/changeset/base/274055 Log: Add support for the multiport feature and fix hot plug races MFC after:1 month Modified: head/sys/dev/virtio/console/virtio_console.c Modified:

Re: svn commit: r272059 - head/sys/compat/linux

2014-11-03 Thread Alexey Dokuchaev
On Wed, Sep 24, 2014 at 08:18:12AM +, Alexander Motin wrote: New Revision: 272059 URL: http://svnweb.freebsd.org/changeset/base/272059 Log: Remake Linux' SOUND_MIXER_INFO IOCTL as a wrapper around new FreeBSD's one. Submitted by: Dmitry Luhtionov dmitryluhtio...@gmail.com

Re: svn commit: r273958 - head/sys/dev/random

2014-11-03 Thread Bruce Evans
On Mon, 3 Nov 2014, Xin Li wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 11/2/14 5:13 PM, Bruce Evans wrote: % - % -KASSERT(random_adaptor != NULL, (No active random adaptor in %s, __func__)); % } % % void Lots of style bugs (long lines, use of the __func__ obfuscation, and

Re: svn commit: r272122 - head/lib/libc/stdtime

2014-11-03 Thread Alexey Dokuchaev
On Thu, Sep 25, 2014 at 06:52:18PM +, Pedro F. Giffuni wrote: New Revision: 272122 URL: http://svnweb.freebsd.org/changeset/base/272122 Log: Add strptime(3) support for %U and %W Add support for the missing POSIX-2001 %U and %W features: the existing FreeBSD strptime code

Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Bruce Evans
On Mon, 3 Nov 2014, Julian Elischer wrote: On 11/3/14, 3:46 PM, Mateusz Guzik wrote: Author: mjg Date: Mon Nov 3 07:46:51 2014 New Revision: 274017 URL: https://svnweb.freebsd.org/changeset/base/274017 Log: Provide an on-stack temporary buffer for small ioctl requests. I'm not sure I

Re: svn commit: r272122 - head/lib/libc/stdtime

2014-11-03 Thread Pedro Giffuni
El 11/3/2014 12:03 PM, Alexey Dokuchaev escribió: On Thu, Sep 25, 2014 at 06:52:18PM +, Pedro F. Giffuni wrote: New Revision: 272122 URL: http://svnweb.freebsd.org/changeset/base/272122 Log: Add strptime(3) support for %U and %W Add support for the missing POSIX-2001 %U and %W

Re: svn commit: r274040 - in head/sys: conf dev/agp

2014-11-03 Thread Tijl Coosemans
On Mon, 3 Nov 2014 11:49:36 + (UTC) Konstantin Belousov k...@freebsd.org wrote: Author: kib Date: Mon Nov 3 11:49:35 2014 New Revision: 274040 URL: https://svnweb.freebsd.org/changeset/base/274040 Log: agp_intel.c provides support for AGP on Intel chipsets from 440/BX to 875.

Re: svn commit: r273955 - in head: etc/rc.d share/man/man7

2014-11-03 Thread Brooks Davis
On Sun, Nov 02, 2014 at 12:11:26AM +, John-Mark Gurney wrote: Author: jmg Date: Sun Nov 2 00:11:25 2014 New Revision: 273955 URL: https://svnweb.freebsd.org/changeset/base/273955 Log: add an rc.d script to automatically grow the specified FS... It has been tested on both MBR and

Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Bruce Evans
On Mon, 3 Nov 2014, Konstantin Belousov wrote: On Mon, Nov 03, 2014 at 10:21:32AM +0100, Mateusz Guzik wrote: On Mon, Nov 03, 2014 at 09:29:06AM +0100, Hans Petter Selasky wrote: On 11/03/14 09:23, Julian Elischer wrote: On 11/3/14, 4:21 PM, Julian Elischer wrote: On 11/3/14, 3:46 PM,

svn commit: r274057 - in head/sys/i386: i386 isa

2014-11-03 Thread John Baldwin
Author: jhb Date: Mon Nov 3 19:16:25 2014 New Revision: 274057 URL: https://svnweb.freebsd.org/changeset/base/274057 Log: Move all of the XSAVE support under #ifdef I686_CPU and fix the build without I686_CPU. Modified: head/sys/i386/i386/machdep.c head/sys/i386/i386/vm_machdep.c

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

2014-11-03 Thread John-Mark Gurney
Author: jmg Date: Mon Nov 3 19:23:49 2014 New Revision: 274059 URL: https://svnweb.freebsd.org/changeset/base/274059 Log: use tab instead of spaces like the rest of the file.. Modified: head/etc/rc.d/syscons Modified: head/etc/rc.d/syscons

Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Poul-Henning Kamp
In message 20141104045159.e1...@besplex.bde.org, Bruce Evans writes: This optimization is probably minor, but reminds me of other syscalls that would benefit using a single largish allocation up front: - all vfs calls that start with namei(). They allocate PATH_MAX (1K) bytes and

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

2014-11-03 Thread John-Mark Gurney
Author: jmg Date: Mon Nov 3 21:03:54 2014 New Revision: 274060 URL: https://svnweb.freebsd.org/changeset/base/274060 Log: switch from spaces to tabs to match style and awk... Pointed out by: brooks Modified: head/etc/rc.d/growfs Modified: head/etc/rc.d/growfs

Re: svn commit: r273955 - in head: etc/rc.d share/man/man7

2014-11-03 Thread John-Mark Gurney
Brooks Davis wrote this message on Mon, Nov 03, 2014 at 19:00 +: On Sun, Nov 02, 2014 at 12:11:26AM +, John-Mark Gurney wrote: Author: jmg Date: Sun Nov 2 00:11:25 2014 New Revision: 273955 URL: https://svnweb.freebsd.org/changeset/base/273955 Log: add an rc.d script to

svn commit: r274061 - head/contrib/netbsd-tests/lib/libc/db

2014-11-03 Thread Garrett Cooper
Author: ngie Date: Mon Nov 3 21:21:08 2014 New Revision: 274061 URL: https://svnweb.freebsd.org/changeset/base/274061 Log: Port t_db.sh to FreeBSD - The blocksize on FreeBSD is 32kB, not 64kB - Add some detection for MK_DICT == no; /nonexistent is echoed along with atf_skip to

Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Alfred Perlstein
Isn't there a problem where the stack can be swapped out? I seem to recall a problem where a swapped out process was causing problems due to a buffer passed being stack allocated and that process being swapped out... If this is not the case then please disregard. -Alfred On 11/2/14, 11:46

Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Hans Petter Selasky
On 11/03/14 22:45, Alfred Perlstein wrote: +u_char smalldata[128]; You should make sure the smalldata is properly aligned, hence on ARM it might cause aligment faults, if fields inside the IOCTL are not accessed with proper alignment. --HPS

svn commit: r274063 - head/sys/dev/virtio/console

2014-11-03 Thread Bryan Venteicher
Author: bryanv Date: Mon Nov 3 22:17:25 2014 New Revision: 274063 URL: https://svnweb.freebsd.org/changeset/base/274063 Log: Create the tty device after the port is completely initialized This fixes a race with a tty open before the host is the ready. MFC after:1 month Modified:

svn commit: r274064 - head

2014-11-03 Thread Bryan Drewery
Author: bdrewery Date: Mon Nov 3 22:19:44 2014 New Revision: 274064 URL: https://svnweb.freebsd.org/changeset/base/274064 Log: Remove MAINTAINER line for binutils. It has not been maintained by obrien since 2008. Approved by: core Modified: head/MAINTAINERS Modified:

svn commit: r274065 - in head/sys: amd64/conf conf i386/conf

2014-11-03 Thread Bryan Venteicher
Author: bryanv Date: Mon Nov 3 22:37:10 2014 New Revision: 274065 URL: https://svnweb.freebsd.org/changeset/base/274065 Log: Add VirtIO console to the x86 NOTES and files Requested by: jhb Modified: head/sys/amd64/conf/NOTES head/sys/conf/files.amd64 head/sys/conf/files.i386

svn commit: r274066 - head/contrib/netbsd-tests/lib/libc/ssp

2014-11-03 Thread Garrett Cooper
Author: ngie Date: Mon Nov 3 23:36:41 2014 New Revision: 274066 URL: https://svnweb.freebsd.org/changeset/base/274066 Log: Port lib/libc/ssp to FreeBSD In most cases, the buffers and data were resized, but when dealing with the helpers, some of the code was adjusted to fail more

svn commit: r274067 - head/contrib/netbsd-tests/lib/libc/rpc

2014-11-03 Thread Garrett Cooper
Author: ngie Date: Mon Nov 3 23:37:51 2014 New Revision: 274067 URL: https://svnweb.freebsd.org/changeset/base/274067 Log: rpc_control on FreeBSD is a public-ish API (not prefixed with __), not private like NetBSD Submitted by: pho Modified:

svn commit: r274068 - head/usr.sbin/sysrc

2014-11-03 Thread Devin Teske
Author: dteske Date: Mon Nov 3 23:43:41 2014 New Revision: 274068 URL: https://svnweb.freebsd.org/changeset/base/274068 Log: Add key+=append syntax to sysrc(8). Reviewed by: shurd MFC after:3 days X-MFC-to: stable/10 stable/9 Modified: head/usr.sbin/sysrc/sysrc

svn commit: r274072 - head/contrib/netbsd-tests/lib/libc/stdlib

2014-11-03 Thread Garrett Cooper
Author: ngie Date: Tue Nov 4 00:04:36 2014 New Revision: 274072 URL: https://svnweb.freebsd.org/changeset/base/274072 Log: Finish off lib/libc/stdlib/t_strtod.c port by checking for y twice on FreeBSD, and always assume long long double exists on FreeBSD Submitted by: pho Modified:

Re: svn commit: r274072 - head/contrib/netbsd-tests/lib/libc/stdlib

2014-11-03 Thread Garrett Cooper
On Nov 3, 2014, at 16:04, Garrett Cooper n...@freebsd.org wrote: Author: ngie Date: Tue Nov 4 00:04:36 2014 New Revision: 274072 URL: https://svnweb.freebsd.org/changeset/base/274072 Log: Finish off lib/libc/stdlib/t_strtod.c port by checking for y twice on FreeBSD, and always assume

svn commit: r274073 - in head/usr.sbin/bsdconfig: . console console/include diskmgmt diskmgmt/include docsinstall docsinstall/include dot dot/include examples include includes includes/include mous...

2014-11-03 Thread Devin Teske
Author: dteske Date: Tue Nov 4 00:14:38 2014 New Revision: 274073 URL: https://svnweb.freebsd.org/changeset/base/274073 Log: Follow-up to r255036; remove beforeinstall directives from bsdconfig(8) Makefile's, fixing concurrent installworld (`make -j17 installworld'). Thanks to:

svn commit: r274074 - head/share/mk

2014-11-03 Thread Garrett Cooper
Author: ngie Date: Tue Nov 4 00:19:10 2014 New Revision: 274074 URL: https://svnweb.freebsd.org/changeset/base/274074 Log: Add Makefile snippet to ease porting NetBSD testcases to FreeBSD from contrib/netbsd-tests This Makefile snippet handles polluting testcases with -lnetbsd, specific

svn commit: r274075 - in head: etc/mtree lib/libc lib/libc/tests lib/libc/tests/c063 lib/libc/tests/db lib/libc/tests/gen lib/libc/tests/gen/execve lib/libc/tests/gen/posix_spawn lib/libc/tests/has...

2014-11-03 Thread Garrett Cooper
Author: ngie Date: Tue Nov 4 00:56:25 2014 New Revision: 274075 URL: https://svnweb.freebsd.org/changeset/base/274075 Log: Add reachover Makefiles for contrib/netbsd-tests/lib/libc; this adds approximately 500 new testcases Various TODOs have been sprinkled around the Makefiles for

svn commit: r274076 - head/usr.sbin/bhyve

2014-11-03 Thread Tycho Nightingale
Author: tychon Date: Tue Nov 4 01:06:33 2014 New Revision: 274076 URL: https://svnweb.freebsd.org/changeset/base/274076 Log: Improve the ability to cancel an in-flight request by using an interrupt, via SIGCONT, to force the read or write system call to return prematurely. Reviewed

svn commit: r274077 - head/share/mk

2014-11-03 Thread Garrett Cooper
Author: ngie Date: Tue Nov 4 01:57:31 2014 New Revision: 274077 URL: https://svnweb.freebsd.org/changeset/base/274077 Log: As an optimization (in simple, well used cases) only call cat ${.ALLSRC} when generating files from various sources instead of calling cat ${.ALLSRC} | sed The perl

svn commit: r274078 - head/lib/libnetbsd/sys

2014-11-03 Thread Garrett Cooper
Author: ngie Date: Tue Nov 4 02:00:07 2014 New Revision: 274078 URL: https://svnweb.freebsd.org/changeset/base/274078 Log: Commit missing header for sys/time.h compat on NetBSD to unbreak the amd64/i386 build Pointyhat to: me (forgot to svn add it sooner) Added:

svn commit: r274079 - in head: contrib/netbsd-tests/include contrib/netbsd-tests/lib/libc/gen contrib/netbsd-tests/lib/libc/stdlib contrib/netbsd-tests/lib/libc/sys contrib/netbsd-tests/lib/libc/ti...

2014-11-03 Thread Garrett Cooper
Author: ngie Date: Tue Nov 4 05:02:22 2014 New Revision: 274079 URL: https://svnweb.freebsd.org/changeset/base/274079 Log: Import proper fix for misc/49356 (/usr/include/atf-c/config.h) after atf-c/config.h was removed from the build Pointyhat to: me (again, for not running make

Re: svn commit: r274017 - head/sys/kern

2014-11-03 Thread Mateusz Guzik
re-sent with trimmed cc On Mon, Nov 03, 2014 at 07:35:56PM +, Poul-Henning Kamp wrote: In message 20141104045159.e1...@besplex.bde.org, Bruce Evans writes: This optimization is probably minor, but reminds me of other syscalls that would benefit using a single largish allocation

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

2014-11-03 Thread Alexander Motin
Author: mav Date: Tue Nov 4 07:44:24 2014 New Revision: 274080 URL: https://svnweb.freebsd.org/changeset/base/274080 Log: Improve error handling around duplicate lun and port enable. This fixes kernel panic if port enabled twice and then disabled. MFC after:1 week Modified:

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

2014-11-03 Thread Alexander Motin
Author: mav Date: Tue Nov 4 07:50:20 2014 New Revision: 274081 URL: https://svnweb.freebsd.org/changeset/base/274081 Log: Fix residual copy/paste in r274080. MFC after:1 week Modified: head/sys/cam/ctl/scsi_ctl.c Modified: head/sys/cam/ctl/scsi_ctl.c