Re: /etc/netstart diff

2017-11-09 Thread Alexander Hall
On November 9, 2017 7:02:54 PM GMT+01:00, Robert Peichaer wrote: >On Wed, Nov 08, 2017 at 10:47:43PM +0100, Holger Mikolon wrote: >> The veriable $HN_DIR is set in /etc/netstart on line 166 but used >only >> once (line 78). The diff below makes use of $HN_DIR in the other

try to bundle multiple packets on an ifq before sending

2017-11-09 Thread David Gwynne
this makes ifq_start try to wait for 4 packets before calling if->if_qstart. this is based on work sephe did in dragonflybsd, and described in a comment in their sys/net/if.c. there's a link to it here: https://github.com/DragonFlyBSD/DragonFlyBSD/blob/master/sys/net/if.c#L2976-L2987 the tests

iked: extend default transform list

2017-11-09 Thread Patrick Wildt
Hi, the list of default transform parameters for iked is rather small. In practice that means that users will have to find out which parameters the peer uses and then create a config with specific parameters. And then another peer comes along that uses different settings and you bite into your

armv7/arm64: enable fifo in com_fdt for "snps,dw-apb-uart"

2017-11-09 Thread Artturi Alm
Hi, does also remove ti,omapX-uart compatibles from arm64 com_fdt, as they're never to be found there. iirc. the lenght is based on minimal lenght i found from any datasheet for SoCs w/"snps,dw-apb-uart", and conclusions drawn from gpl-sources. -Artturi diff --git

Re: Add Diffie-Hellman group negotiation to iked

2017-11-09 Thread Stuart Henderson
On 2017/06/25 21:44, Tim Stewart wrote: > Hi, > > In this message I've tried to encode everything I've done to allow > strongSwan on Android to connect with iked, including the latest patch. > I have also verified that it breaks neither initial negotiation nor > Child SA rekeying for OpenBSD,

Re: README patch

2017-11-09 Thread Jason McIntyre
On Thu, Nov 09, 2017 at 08:42:32PM +0100, Ingo Schwarze wrote: > Hi, > > Jason McIntyre wrote on Thu, Nov 09, 2017 at 07:26:32PM +: > > On Wed, Nov 08, 2017 at 08:14:24PM -0600, Edgar Pettijohn wrote: > > >> --- README.orig 2017-11-08 20:11:47.091955000 -0600 > >> +++ README 2017-11-08

Re: README patch

2017-11-09 Thread Ingo Schwarze
Hi, Jason McIntyre wrote on Thu, Nov 09, 2017 at 07:26:32PM +: > On Wed, Nov 08, 2017 at 08:14:24PM -0600, Edgar Pettijohn wrote: >> --- README.orig 2017-11-08 20:11:47.091955000 -0600 >> +++ README 2017-11-08 20:12:19.787639000 -0600 >> @@ -49,8 +49,8 @@ >> >> No major funding or

Re: README patch

2017-11-09 Thread Jason McIntyre
On Wed, Nov 08, 2017 at 08:14:24PM -0600, Edgar Pettijohn wrote: > EADME.orig 2017-11-08 20:11:47.091955000 -0600 > +++ README 2017-11-08 20:12:19.787639000 -0600 > @@ -49,8 +49,8 @@ > > No major funding or cost-sharing of the project comes from any company > or educational institution.

Re: /etc/netstart diff

2017-11-09 Thread Robert Peichaer
On Wed, Nov 08, 2017 at 10:47:43PM +0100, Holger Mikolon wrote: > The veriable $HN_DIR is set in /etc/netstart on line 166 but used only > once (line 78). The diff below makes use of $HN_DIR in the other cases > where netstart cares of ip address configuration. > > With below change I can

Re: dwiic: add pci attachment

2017-11-09 Thread Cesare Gargano
Hi, this breaks my ASUS E200HA because of missing acpi_attach_deps in dwiic_acpi_found_hid, see https://marc.info/?l=openbsd-bugs=149504791212937=2 - C. On Nov 9, 2017 14:07, "joshua stein" wrote: On Thu, 09 Nov 2017 at 10:14:16 +0100, Remi Locherer wrote: > On Fri, Nov 03,

Re: Sh FILES without Pa

2017-11-09 Thread Jason McIntyre
On Thu, Nov 09, 2017 at 12:36:29PM +0100, Jan Stary wrote: > Hi Ingo, > > currently, mandoc DIAGNOSTICS recognizes an AUTHORS section without An. > Would it be similarly useful to recognize a FILES section without Pa? > personally this is one warning that i don;t like from mandoc. it flags up

Re: dwiic: add pci attachment

2017-11-09 Thread joshua stein
On Thu, 09 Nov 2017 at 10:14:16 +0100, Remi Locherer wrote: On Fri, Nov 03, 2017 at 12:01:15PM -0500, joshua stein wrote: Intel 100 Series laptops have the DesignWare I2C controller attaching via PCI instead of ACPI, so move the guts of dwiic(4) into ic/ and add dwiic_acpi and dwiic_pci files.

Re: Sh FILES without Pa

2017-11-09 Thread Jan Stary
On Nov 09 12:36:29, h...@stare.cz wrote: > Question: > > static int > child_an(const struct roff_node *n) > { > for (n = n->child; n != NULL; n = n->next) > if ((n->tok == MDOC_An && n->child != NULL) || child_an(n)) > return 1; > return 0; > } > >

Sh FILES without Pa

2017-11-09 Thread Jan Stary
Hi Ingo, currently, mandoc DIAGNOSTICS recognizes an AUTHORS section without An. Would it be similarly useful to recognize a FILES section without Pa? I left the empty lines after the opening { in case they are intended, just like child_an() and post_sh_authors() have them, but feel free to

iked: support MOBIKE (RFC 4555)

2017-11-09 Thread Patrick Wildt
Hi, this diff implements MOBIKE (RFC 4555) support in iked(8), with us acting as responder. In practice this support means that clients like iPhones can roam in different networks (LTE, WiFi) and change their external address without having to re-do the whole handshake. It allows the client to

Re: dwiic: add pci attachment

2017-11-09 Thread Remi Locherer
On Fri, Nov 03, 2017 at 12:01:15PM -0500, joshua stein wrote: > Intel 100 Series laptops have the DesignWare I2C controller > attaching via PCI instead of ACPI, so move the guts of dwiic(4) into > ic/ and add dwiic_acpi and dwiic_pci files. Unfortunately the PCI > attachment still needs to

libfuse: signal handler doesn't cater for "Device busy" and other errors

2017-11-09 Thread Helg Bredow
The current libfuse signal handling assumes that the file system will always be unmounted by the child. One obvious case where this is not true is if the file system is busy. To replicate: 1. mount a fuse file system 2. cd anywhere on the file system 3. pkill -INT The result is a zombie child

Re: TLS with static non-PIE binaries

2017-11-09 Thread Philip Guenther
On Thu, Nov 9, 2017 at 12:07 AM, Charles Collicutt wrote: > On Wed, Nov 08, 2017 at 10:58:09PM -0800, Philip Guenther wrote: > > @nobits means the section won't have filespace (where the initialization > > data is) included in the loaded data. It should work with

Re: TLS with static non-PIE binaries

2017-11-09 Thread Charles Collicutt
On Wed, Nov 08, 2017 at 10:58:09PM -0800, Philip Guenther wrote: > @nobits means the section won't have filespace (where the initialization > data is) included in the loaded data. It should work with @progbits > instead. Wow, I suck at assembly. However, once again binutils saved me: $ readelf