Re: AMD 17h/1xh HD Audio testers wanted!

2023-03-07 Thread Stefan Hagen
Stefan Hagen wrote (2023-03-05 09:19 CET): > Alexandre Ratchov wrote (2023-03-05 08:53 CET): > > If you've an azalia(4) attaching as "AMD 17h/1xh HD Audio", please > > test this diff and report regressions. Especially audio lock ups that > > require reboot. > > > > IIRC, MSI was disabled few

[PATCH] Zap 23 TAB and 19 white spaces in chat.c

2023-03-07 Thread Purple Rain
Index: chat.c === RCS file: /cvs/src/usr.sbin/pppd/chat/chat.c,v retrieving revision 1.35 diff -u -p -r1.35 chat.c --- chat.c 5 Apr 2016 21:24:02 - 1.35 +++ chat.c 8 Mar 2023 03:51:44 - @@ -19,7 +19,7 @@ *

Re: ps(1): fix command alignment

2023-03-07 Thread guenther
On Tue, 7 Mar 2023, Tobias Heider wrote: > I was playing with ps today and noticed that the alignment of everything > following the "command" keyword seems to be broken currently. An easy way > to test this is running ps -axo command,uid which gives me a wrongly aligned > uid for some processes:

Re: bpf(4) "wait" timeouts

2023-03-07 Thread David Gwynne
On Mon, Feb 13, 2023 at 08:30:03AM +0100, Alexandr Nedvedicky wrote: > Hello, > > This diff looks good to me. Though I still have some > doubts about accuracy of comment here: > > > > return (kn->kn_data > 0); > > @@ -1510,6 +1599,15 @@ bpf_catchpacket(struct bpf_d *d, u_char > >

Re: ps(1): fix command alignment

2023-03-07 Thread Todd C . Miller
On Wed, 08 Mar 2023 01:37:18 +0100, Tobias Heider wrote: > It look like this was broken in 1.83 which introduces print_comm_name() but > wrongly assumes the returned value is the length difference when it actually > is the updated length value. With this fixed I get a correctly aligned output OK

[PATCH] Remove TAB in mk.sys

2023-03-07 Thread Purple Rain
? sys.mk.diff Index: sys.mk === RCS file: /cvs/src/share/mk/sys.mk,v retrieving revision 1.93 diff -u -p -r1.93 sys.mk --- sys.mk 4 Mar 2023 14:49:37 - 1.93 +++ sys.mk 8 Mar 2023 00:20:15 - @@ -44,7 +44,7 @@

[PATCH] White space in param.h

2023-03-07 Thread Purple Rain
Index: param.h === RCS file: /cvs/src/sys/sys/param.h,v retrieving revision 1.140 diff -u -p -r1.140 param.h --- param.h 4 Mar 2023 14:49:37 - 1.140 +++ param.h 8 Mar 2023 00:17:10 - @@ -216,7 +216,7 @@ */

Re: ps(1): fix command alignment

2023-03-07 Thread Tobias Heider
On Wed, Mar 08, 2023 at 01:37:18AM +0100, Tobias Heider wrote: > Hi, > > I was playing with ps today and noticed that the alignment of everything > following the "command" keyword seems to be broken currently. An easy way > to test this is running ps -axo command,uid which gives me a wrongly

ps(1): fix command alignment

2023-03-07 Thread Tobias Heider
Hi, I was playing with ps today and noticed that the alignment of everything following the "command" keyword seems to be broken currently. An easy way to test this is running ps -axo command,uid which gives me a wrongly aligned uid for some processes: /usr/X11R6/bin/X35 X: [priv] (Xorg)

Re: ssh-pkcs11.c: fix some error messages

2023-03-07 Thread Damien Miller
On Tue, 7 Mar 2023, Theo Buehler wrote: > Some error messages don't match the function calls. There's still this > one that looks weird. Not sure what it should say to be helpful: > "unexpected ec signature length" perhaps? > > if (siglen < 64 || siglen > 132 || siglen % 2) { >

Re: malloc: change chunk sizes to be multiple of 16 instead of power of 2

2023-03-07 Thread Otto Moerbeek
On Tue, Mar 07, 2023 at 09:02:04AM +0100, Theo Buehler wrote: > > So here's the dif with the fix. > > The new diff went through an amd64 bulk without fallout and also works > fine on some dev machines. No noticeable performance impact for my > workloads. > > It also reads fine to me (ok tb). >

ssh-pkcs11.c: fix some error messages

2023-03-07 Thread Theo Buehler
Some error messages don't match the function calls. There's still this one that looks weird. Not sure what it should say to be helpful: "unexpected ec signature length" perhaps? if (siglen < 64 || siglen > 132 || siglen % 2) { ossl_error("d2i_ECDSA_SIG failed"); Index:

Re: route.8: add back command tags

2023-03-07 Thread Jason McIntyre
my fault. please fix as needed. thanks, jmc On 7 March 2023 09:22:31 GMT, Klemens Nanni wrote: >http://man.openbsd.org/OpenBSD-7.2./route.8#add jumps to `add's definition, >http://man.openbsd.org/OpenBSD-current/route.8#add does not. > >Probably lost in the recent reshuffle. >Restore ":t add",

Re: rc.d.8: fix daemon_* markup

2023-03-07 Thread Stuart Henderson
On 2023/03/06 14:16, Klemens Nanni wrote: > 06.03.2023 13:49, Raf Czlonka пишет: > > To quote sthen@[0]: > > > > But that isn't, it is talking about _execdir, > > _flags, etc where you need to replace the > > > > [0] https://marc.info/?l=openbsd-tech=165364961710717=2 > > I find this

route.8: add back command tags

2023-03-07 Thread Klemens Nanni
http://man.openbsd.org/OpenBSD-7.2./route.8#add jumps to `add's definition, http://man.openbsd.org/OpenBSD-current/route.8#add does not. Probably lost in the recent reshuffle. Restore ":t add", etc. in the manual pager. OK? Index: route.8

Re: malloc: change chunk sizes to be multiple of 16 instead of power of 2

2023-03-07 Thread Theo Buehler
> So here's the dif with the fix. The new diff went through an amd64 bulk without fallout and also works fine on some dev machines. No noticeable performance impact for my workloads. It also reads fine to me (ok tb). Do you want it to make it into the release or can/should it wait? Either way,