remove outdated "expected to be compliant"

2023-01-11 Thread Jonathan Gray
Index: sys/setsid.2 === RCS file: /cvs/src/lib/libc/sys/setsid.2,v retrieving revision 1.14 diff -u -p -r1.14 setsid.2 --- sys/setsid.231 May 2015 23:54:25 - 1.14 +++ sys/setsid.212 Jan 2023 07:10:10 - @@ -

Re: ifconfig description for wireguard peers

2023-01-11 Thread Mikolaj Kucharski
Hi, Is there anything else which I can do, to help this diff reviwed and increase the chance of getting in? Thread at https://marc.info/?t=16347829861&r=1&w=2 Last version of the diff at https://marc.info/?l=openbsd-tech&m=167185582521873&q=mbox On Thu, Jan 05, 2023 at 07:41:54PM +0100, Hr

Re: Suggested fix for Pandaboard USB hard drive enumeration

2023-01-11 Thread Jonathan Gray
On Tue, Jan 10, 2023 at 09:04:31PM -0500, Lwazi Dube wrote: > My Pandaboard fails to enumerate a USB hard drive (used as a root > device) and panics. Earlier, I had to add a 2s delay to make u-boot > boot from "spinning" USB disks (flash drives are ok). OpenBSD needs > the same change to make hard

Re: bgpd rde_filterstate_prep refactor

2023-01-11 Thread Theo Buehler
On Wed, Jan 11, 2023 at 06:34:01PM +0100, Claudio Jeker wrote: > Introduce rde_filterstate_init() and rde_filterstate_copy() for the cases > where either the filterstate needs to be initalized or copied from an > other filterstate. Also switch rde_filterstate_prep() to take a struct > prefix as arg

bgpd rde_filterstate_prep refactor

2023-01-11 Thread Claudio Jeker
Introduce rde_filterstate_init() and rde_filterstate_copy() for the cases where either the filterstate needs to be initalized or copied from an other filterstate. Also switch rde_filterstate_prep() to take a struct prefix as argument since this is the case for all other call sites. I think the resu

Re: vmm: mask WAITPKG cpuid feature to hide TPAUSE

2023-01-11 Thread Dave Voutila
Mike Larkin writes: > On Mon, Jan 09, 2023 at 06:51:27PM -0500, Dave Voutila wrote: >> >> This ok with folks? Had OK's for the original diff but double checking >> before I commit. >> > > This is only half of what you need to do to stop guests from using > unwanted/unsupported instructions. Rem

Re: bgpd: include validation state in struct filterstate

2023-01-11 Thread Theo Buehler
On Wed, Jan 11, 2023 at 03:22:17PM +0100, Claudio Jeker wrote: > This diff does actually 2 things. > > 1) it adds the validation state to the filterstate struct and with that > removes it from rde_filter(). As a next step it can also be removed from > prefix_update() and friends. > > 2) rename pr

bgpd: include validation state in struct filterstate

2023-01-11 Thread Claudio Jeker
This diff does actually 2 things. 1) it adds the validation state to the filterstate struct and with that removes it from rde_filter(). As a next step it can also be removed from prefix_update() and friends. 2) rename prefix_vstate() to prefix_roa_vstate() since it returns the roa validation stat

Re: bgpd aspa validation function

2023-01-11 Thread Theo Buehler
On Mon, Jan 09, 2023 at 01:59:50PM +0100, Claudio Jeker wrote: > So here is the validaton logic for ASPA. Now this is currently not > hooked up to anything apart from a larger regress test. > What is missing is code to send the ASPA table to the RDE and the reload > logic for ASPA. > > Most of the