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
===
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:
hea
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 al
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 delete-
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:
head/lib/libnetbsd/sy
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
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 by:
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 item
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
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:delphi
On Nov 3, 2014, at 16:04, Garrett Cooper 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 long lo
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:
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
head/usr.s
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:
head/contrib/netbsd-tests/lib/libc/rpc/t_rp
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 reliably
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
head/
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: head/MAINTAINER
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:
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
__
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 P
Author: ngie
Date: Mon Nov 3 21:26:11 2014
New Revision: 274062
URL: https://svnweb.freebsd.org/changeset/base/274062
Log:
inet_network on FreeBSD returns NULL when provided "0x" to inet_network
Submitted by: pho
Modified:
head/contrib/netbsd-tests/lib/libc/inet/t_inet_network.c
Modifi
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 ensure
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 r
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
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 an
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
===
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
head/
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, Mateus
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
On Mon, 3 Nov 2014 11:49:36 + (UTC) Konstantin Belousov
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. This inter
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 featur
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 like
On 03.11.2014 18:59, Alexey Dokuchaev wrote:
> 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.
>>
>> Subm
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
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,
an
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
> MFC after: 3 d
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: head/sys/dev/
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
==
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: head/share/man/man4/v
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 patc
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
h
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:
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.
Di
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 matte
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
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
Modifi
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
Modifi
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:
head/usr.s
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
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 to
On Mon, Nov 03, 2014 at 11:34:48AM +0100, Attilio Rao wrote:
> On Sun, Nov 2, 2014 at 11:49 PM, Konstantin Belousov
> 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
> >> wrote:
> >> > On Sun, Nov 02, 2014 at 10:17:
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:
head/sys/cam/ctl/ctl_frontend_isc
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
Modified:
head/sys/dev/sound/isa/gusc.c
head/sys/dev/sound/isa/sb
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: head/sys/dev/iscsi/icl
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 preferr
On Sun, Nov 2, 2014 at 11:49 PM, Konstantin Belousov
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
>> wrote:
>> > On Sun, Nov 02, 2014 at 10:17:26PM +0100, Attilio Rao wrote:
>> >> I think that your initial patch (wha
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
> >
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 (
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 Revision:
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: head/usr.sbin/pw/tests/Mak
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: http
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 patch for review. It
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 t
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 alway
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 s
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
=
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 pr
-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).
Wha
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 for
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 like
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
71 matches
Mail list logo