Re: vmm: mask WAITPKG cpuid feature to hide TPAUSE

2023-01-09 Thread Dave Voutila
This ok with folks? Had OK's for the original diff but double checking before I commit. Dave Voutila writes: > Philip Guenther writes: > >> On Sat, Jan 7, 2023 at 11:04 AM Dave Voutila wrote: >> >> Bringing this to tech@ to increase my chance of someone testing my >> diff. >> >> As

patch for 7.2 to fix pfsync panics in pf_state_export()

2023-01-09 Thread Alexandr Nedvedicky
Hello, if you don't use pfsync on 7.2 stop reading now. There are two reports already [1] which have the same cause: NULL pointer dereference in pf_state_export(). dlg@ has fixed this bug in CUURENT back in December [2]. Unfortunately the patch for 7.2 needs a manual merge, because CURRENT

Re: [PATCH] AZALIA(4) no audio after suspend

2023-01-09 Thread Carlos Neira
I have installed OpenBSD 7.2 and I have the same problem, after applying this fix, audio after suspend works. Let me know if this is the best way to fix this issue, I have been running this patch for some time now. Bests El jue, 9 jul 2020 a la(s) 18:38, Carlos Antonio Neira Bustos (

[patchset] 256 colour console and other enhancements

2023-01-09 Thread Crystal Kolipe
Another update to the console patchset... At this point, my focus has shifted to testing the currently implemented functionality rather than adding anything new. Unless there is breakage that I am not aware of, this version of the diff already allows the use of TERM=xterm with no loss of

Re: Preferred TERM for pkg_add

2023-01-09 Thread Nicholas Marriott
>From a quick look it will happily fall back to carriage return and space if the capabilities it would prefer (el and hpa/RI) are not present, so probably anything would do. Or you could check if the terminfo entry existed with something like "tput el >/dev/null 2>&1" before running pkg_add.

bgpd aspa validation function

2023-01-09 Thread Claudio Jeker
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 ASPA validation happens in rde_aspa.c. aspa_cp_lookup() checks if a

Re: rport(4): layer 3 link between rdomains

2023-01-09 Thread Vitaliy Makkoveev
Since the interface is fully accessible after if_attach(), if_counters_alloc() should be called before. > + > + if_attach(ifp); > + if_alloc_sadl(ifp); > + if_counters_alloc(ifp); > + On Mon, Jan 09, 2023 at 04:22:50PM +1000, David Gwynne wrote: > this is basically pair(4) except at