forwarding in parallel

2021-07-06 Thread Alexander Bluhm
Hi, Thank a lot to Hrvoje Popovski for testing my diff and to sashan@ and dlg@ for fixing all the fallout in pf and pseudo drivers. Are there any bugs left? I think everything has been fixed. To make progress I think it should be commited. Then we get MP pressure on the network stack in real

Re: Correct minor lie in re_format(7)

2021-07-06 Thread Todd C . Miller
On Tue, 06 Jul 2021 11:01:06 +0200, Martijn van Duren wrote: > There are equivalents for '+' and '?' in BRE. OK millert@ - todd

Re: vscsi/iscsid: wait for scsi_probe to complete after connections are established

2021-07-06 Thread Ashton Fagg
Ping again. Diffs re-attached below. Ashton Fagg writes: > Friendly ping, really hoping someone can take a look. Diffs re-attached. > > Thanks, > > Ash > > Ashton Fagg writes: > >> Updated diffs attached. >> >> - I read style(9) a little more closely and worked out I had some >> issues, so I

Re: iwx not getting to status: active

2021-07-06 Thread Greg Steuck
Stefan Sperling writes: > Taking a fresh look at this in the morning, I think we should be checking > for errors from ieee80211_set_key() before flagging the group key as valid. > The only reason this could fail in your case is ENOMEM so it shouldn't > make a difference regarding your test case.

Re: spamd(8) use tls_config_set_{cert,key}_file instead of relying on tls_load_file(3)

2021-07-06 Thread Klemens Nanni
On Tue, Jul 06, 2021 at 02:37:34PM +0100, Ricardo Mestre wrote: > You got the order wrong on my diff :) > > Before, the certs were loaded by root in memory and then set by _spamd, with > my > diff they are still loaded by root but now also set, everything else > still has the same order so it

Re: spamd(8) use tls_config_set_{cert,key}_file instead of relying on tls_load_file(3)

2021-07-06 Thread Ricardo Mestre
Hey kn, You got the order wrong on my diff :) Before, the certs were loaded by root in memory and then set by _spamd, with my diff they are still loaded by root but now also set, everything else still has the same order so it should be: tls_config_set_*_file() fork() setres*id() pledge() On

Re: spamd(8) use tls_config_set_{cert,key}_file instead of relying on tls_load_file(3)

2021-07-06 Thread Mikolaj Kucharski
On Tue, Jul 06, 2021 at 12:58:37PM +, Klemens Nanni wrote: > On Wed, Jun 30, 2021 at 01:11:38PM +0100, Ricardo Mestre wrote: > > Hi, > > > > I may have seen it elsewhere, or probably not, but after checking on kn's > > commit > > to tls_load_file(3) it seems it's now possible to set the

Re: spamd(8) use tls_config_set_{cert,key}_file instead of relying on tls_load_file(3)

2021-07-06 Thread Klemens Nanni
On Wed, Jun 30, 2021 at 01:11:38PM +0100, Ricardo Mestre wrote: > Hi, > > I may have seen it elsewhere, or probably not, but after checking on kn's > commit > to tls_load_file(3) it seems it's now possible to set the ca/cert/key directly > without having to load them first from disk and set them

Re: Correct minor lie in re_format(7)

2021-07-06 Thread Klemens Nanni
On Tue, Jul 06, 2021 at 11:01:06AM +0200, Martijn van Duren wrote: > There are equivalents for '+' and '?' in BRE. OK kn

Re: vmd(8): simplify vcpu logic, removing uart & net reads

2021-07-06 Thread Dave Voutila
Looking for an OK for this one now. Anyone? Dave Voutila writes: > Dave Voutila writes: > >> Looking for some broader testing of the following diff. It cleans up >> some complicated logic predominantly left over from the early days of >> vmd prior to its having a dedicated device thread. > >

Re: iwx not getting to status: active

2021-07-06 Thread zxystd
Confirmed it is also work. iwx0 at pci0 dev 20 function 3 "Intel Wi-Fi 6 AX201" rev 0x00, msix Regards, zxystd

Correct minor lie in re_format(7)

2021-07-06 Thread Martijn van Duren
There are equivalents for '+' and '?' in BRE. OK? martijn@ Index: re_format.7 === RCS file: /cvs/src/lib/libc/regex/re_format.7,v retrieving revision 1.22 diff -u -p -r1.22 re_format.7 --- re_format.7 14 Sep 2015 20:06:58 -

Re: iwx not getting to status: active

2021-07-06 Thread Stefan Sperling
On Mon, Jul 05, 2021 at 06:36:00PM -0700, Greg Steuck wrote: > Stefan Sperling writes: > > > On Tue, Jul 06, 2021 at 12:31:20AM +0200, Stefan Sperling wrote: > >> On Mon, Jul 05, 2021 at 02:11:36PM -0700, Greg Steuck wrote: > >> > Do I need to figure out the state machines behind iwx and

Re: rsync fix symlink discovery

2021-07-06 Thread Claudio Jeker
On Mon, Jul 05, 2021 at 08:11:12PM -0900, Philip Guenther wrote: > Based on the fts_open(3) manpage and other base source usage, shouldn't > this use fts_accpath instead of fts_name? Yes this should use fts_accpath. I knew there was something different than fts_name. I just missed it when I read