Re: Thread-safe libcrypto by using weak symbols to pthread

2015-03-28 Thread Philip Guenther
On Sat, 28 Mar 2015, Carlos Mart?n Nieto wrote: > I?ve been looking into making libcrypto automatically thread-safe. The > obvious solution is to use pthread to perform the locking instead of > relying on the user to set locking callbacks, as the final user > shouldn?t need to care that LibreSSL

Re: UPDATE: xkeyboard-config 2.14

2015-03-28 Thread Alexandr Shadchin
On Sun, Feb 08, 2015 at 03:10:45PM +0500, Alexandr Shadchin wrote: > Hi, > > This diff updates xkeyboard-config to the latest release. > Tested on amd64. > > Comments ? OK ? > > -- > Alexandr Shadchin > Ping. -- Alexandr Shadchin

Re: [PATCH] #include in parse.y when calloc is used

2015-03-28 Thread Philip Guenther
On Sat, Mar 28, 2015 at 5:38 PM, Ted Unangst wrote: > Renato Westphal wrote: >> > +#include >> > #include > >> "#include ", >> "#include ", > >> If you include the stdlib header in the .y file you will end up with >> two includes for the same header in the .c file. > > Looks lik

mg(1) sysdef.h cleanning

2015-03-28 Thread Kamil Rytarowski
Hello Brian, Thank you for erasing sysdef.h and pushing the task even further. It will make life easier to deal with it in a modern environment. Good work.

Re: let vlan(4) mtu be limited by the parents hardmtu instead of current mtu

2015-03-28 Thread David Gwynne
> On 20 Aug 2014, at 9:54 am, David Gwynne wrote: > > this lets you have networks on the "native" vlan on an interface > at 1500, while setting a child vlan interfaces mtu to jumbos. > > ok? how about now? i believe both ix and oce unconditionally set their mru now, and it's the start of the

Re: [PATCH] #include in parse.y when calloc is used

2015-03-28 Thread Ted Unangst
Renato Westphal wrote: > > +#include > > #include > "#include ", > "#include ", > If you include the stdlib header in the .y file you will end up with > two includes for the same header in the .c file. Looks like we're already including string.h twice. Probably makes sense to

Re: [PATCH] #include in parse.y when calloc is used

2015-03-28 Thread Joerg Sonnenberger
On Sat, Mar 28, 2015 at 09:42:00AM -0300, Renato Westphal wrote: > I don't think that this is necessary. Yacc includes a skeleton C code > when generating a parser from a grammar specification file (.y) and > the stdlib header is in there: > > char *banner[] = > { > "#include ", >

Re: ssh-add.1 / ssh-askpass clarification

2015-03-28 Thread Jiri B
On Sat, Mar 28, 2015 at 07:19:13AM +, Jason McIntyre wrote: > > > maybe this is clearer: > > > > > > Index: ssh-add.1 > > > === > > > RCS file: /cvs/src/usr.bin/ssh/ssh-add.1,v > > > retrieving revision 1.61 > > > diff -u -r1.61 s

unifdef fun with vi

2015-03-28 Thread Brian Callahan
Hi again tech@ -- Some more unifdef fun with vi: 1. SA_INTERRUPT is a SunOS extension. I don't think we need to care if vi is portable there anymore. vi doesn't build if defined the other way. 2. There is a HISTORIC_PRACTICE and a HISTORICAL_PRACTICE define. We don't appear to be using ei

Re: [UPDATE] xcb-util-cursor-0.1.2

2015-03-28 Thread Matthieu Herrb
On Fri, Mar 27, 2015 at 01:55:56PM +0100, David Coppa wrote: > > Minor update, no important stuff for us. > > Comments? > > Index: Makefile.in > === > RCS file: /cvs/xenocara/lib/xcb-util-cursor/Makefile.in,v > retrieving revision 1

unix domain pcb slist macro

2015-03-28 Thread Alexander Bluhm
Hi, I would like to replace the manual list in unix domain sockets with a SLIST. That makes the code easier to read. ok? bluhm Index: sys/kern/kern_sysctl.c === RCS file: /data/mirror/openbsd/cvs/src/sys/kern/kern_sysctl.c,v retri

[GSOC] Hammer2 for openbsd

2015-03-28 Thread Joris Giovannangeli
Hi, i've submitted a proposal for gsoc on melange, but i'm reposting it here since it looks easier to get feedback than on the web interface. HAMMER2 --- HAMMER2 is a file system developed by Matthew Dillon for DragonFlyBSD. The main purpose of this new filesystem is to support replication c

bounds checks in aml_rwgas

2015-03-28 Thread Jonathan Matthew
The diff below fixes a uvm fault I'm seeing when booting an MP kernel on a hp bc2500 blade, somewhere during acpi attach. SP kernels don't crash, but I think that's down to luck. It looks like this: ioapic0 at mainbus0: apid 2 pa 0xfec0, version 21, 24 pins acpimcfg0 at acpi0 addr 0xe00

Re: [PATCH] #include in parse.y when calloc is used

2015-03-28 Thread Renato Westphal
2015-03-28 8:56 GMT-03:00 Fabian Raetz : > Hi tech@, > > should the stdlib.h header be included in parse.y files when calloc(3) > is used? > > Regards, > Fabian > > > From ce8307e0bc7541b88a9a9bf949f6585adef46bb6 Mon Sep 17 00:00:00 2001 > From: Fabian Raetz > Date: Sat, 28 Mar 2015 12:44:32 +0100

softraid slist macro

2015-03-28 Thread Alexander Bluhm
Hi, The SLIST_REMOVE within a SLIST_FOREACH loop without SAFE looks scary. The old code removed the entries from the root link ony by one. This can be done in a single step. Replace some manual loops with SLIST macros and remove unnecessary code. I am running this with softraid crypto, could s

[PATCH] #include in parse.y when calloc is used

2015-03-28 Thread Fabian Raetz
Hi tech@, should the stdlib.h header be included in parse.y files when calloc(3) is used? Regards, Fabian >From ce8307e0bc7541b88a9a9bf949f6585adef46bb6 Mon Sep 17 00:00:00 2001 From: Fabian Raetz Date: Sat, 28 Mar 2015 12:44:32 +0100 Subject: [PATCH] include stdlib.h because of calloc(3) usag

ehci(4) Full-speed isochronous transfers support

2015-03-28 Thread Martin Pieuchot
With the increasing number of machines shipping with rate-matching hubs instead of companion controllers to support USB Full and Low- speed devices, a number of people asked me if it was possible to add support for Full-speed isochronous transfers in order to use USB1.1 uaudio(4) devices with ehci(

Re: ssh-add.1 / ssh-askpass clarification

2015-03-28 Thread Jason McIntyre
On Fri, Mar 27, 2015 at 08:04:08PM -0400, Jiri B wrote: > On Fri, Mar 27, 2015 at 11:22:07PM +, Jason McIntyre wrote: > > On Fri, Mar 27, 2015 at 07:07:04PM -0400, Jiri B wrote: > > > Mentioning 'ssh-askpass' is used when SSH_ASKPASS > > > is not set. > > > > > > j. > > > > > > Index: ssh-add