Re: vmd(8): slight NS8250 fix

2019-05-24 Thread Katherine Rohl
Hi, I was able to install Centos and boot Alpine and Ubuntu without problems using the serial interface, using vmd(8) built with my diff. (Side note, what console email program is the best for submitting these patches anyway?) Katherine > On May 23, 2019, at 12:22 AM, Mike Larkin wrote: > >

Re: ospf6d: allow specifying area by number as well as id

2019-05-24 Thread Denis Fondras
On Thu, May 23, 2019 at 10:58:51PM +0200, Remi Locherer wrote: > Hi tech@, > > David sent a diff for ospfd which allows specifying an area by number > as well as id. > --> https://marc.info/?l=openbsd-tech&m=155650284619263&w=2 > > This diff does the same for ospf6d and ospf6ctl without modifying

Re: Stream Control Transmission Protocol SCTP RFC4960

2019-05-24 Thread Jordan Geoghegan
On 5/23/19 2:35 PM, Job Snijders wrote: On Thu, May 23, 2019 at 19:50 Denis wrote: SCTP(4) present in FreeBSD 12.0 OpenBSD implementation planned? Nothing planned as far as I know. Out of curiosity - what is your use case? Do you really use it? It doesn’t seem to be a widely used protoco

[patch] make bioctl(8) print the correct error

2019-05-24 Thread Jesper Wallin
Hi tech@ A few days ago, I decided to set kern.securelevel=2 just for the sake of locking down my machine as much as possible. Today I learned that this affects bioctl(8) when trying to attach a crypto RAID. So, bioctl(8) gave me "softraid0: invalid metadata format" and I had a minor panic attac

vmm Graphics Support

2019-05-24 Thread Katherine Rohl
Hi, I’ve been tinkering with adding an MDA device to vmm. I was wondering if the way that we would add X support to vmm had been discussed so there’s somewhere for the video output to go. I’m not too familiar with OpenBSD development practices, so I’m not sure where to look for this kind of i

Re: [PATCH] Provide static_ASN1_*(). From OpenSSL 1.1.0 API.

2019-05-24 Thread Theo Buehler
On Fri, May 24, 2019 at 04:22:06PM +0300, Stefan Strogin wrote: > Could somebody review the patch please? We saw the pull request and will look into it soon. Apologies, we are all currently very busy. > Or have I done something wrong sending it to this mailing list? Not at all. Thank you for th

Re: [PATCH] Provide static_ASN1_*(). From OpenSSL 1.1.0 API.

2019-05-24 Thread Stefan Strogin
Could somebody review the patch please? Or have I done something wrong sending it to this mailing list? Some user-space programs use this API: https://github.com/krb5/krb5/blob/9eb937a6e1f740d323221813e5da096d30bd68de/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c#L3060 Without it we have to

bgpd session engine optimization

2019-05-24 Thread Claudio Jeker
Running bgpd with 500+ peers shows that per poll loop more then 1000 clock_gettime() syscalls are made (it is actually 2 * num peers). This diff changes this by caching the clock_gettime() value before the loop over all peers and using the cached value for the timer calculation. This is no big deal