Re: demystify vport(4) in vport(4) and ifconfig(8)

2021-10-28 Thread David Gwynne
> On 28 Oct 2021, at 15:35, Jason McIntyre wrote: > > On Thu, Oct 28, 2021 at 01:27:17PM +1000, David Gwynne wrote: >> >>> that strategy does rely on individual driver docs saying upfront that >>> they can be created though, even if using create is not common. i wonder if >>> ifconfig

Re: NiX Spam mirroring

2021-10-28 Thread Bob Beck
Should be fixed. a bit of a pain because their new site has an expired tls cert. On Thu, Oct 28, 2021 at 07:30:56AM +0200, Jan Johansson wrote: > Hello! > > I write to you because I beleive that you are running the NiX Spam > mirroring script for OpenBSD. The feed has been broken for some >

Re: demystify vport(4) in vport(4) and ifconfig(8)

2021-10-28 Thread Jason McIntyre
On Thu, Oct 28, 2021 at 04:53:39PM +1000, David Gwynne wrote: > > > > On 28 Oct 2021, at 15:35, Jason McIntyre wrote: > > > > On Thu, Oct 28, 2021 at 01:27:17PM +1000, David Gwynne wrote: > >> > >>> that strategy does rely on individual driver docs saying upfront that > >>> they can be

Re: demystify vport(4) in vport(4) and ifconfig(8)

2021-10-28 Thread Stuart Henderson
On 2021/10/28 13:11, David Gwynne wrote: > On Wed, Oct 27, 2021 at 10:12:35AM +0100, Stuart Henderson wrote: > > On 2021/10/27 17:44, David Gwynne wrote: > > > > > > > benno@ suggested I look at vether(4) to adapt the text related to > > > > bridge(4) but I'm not sure how to rewrite it properly

openrsync add --max-size and --min-size support

2021-10-28 Thread Claudio Jeker
This diff should implement --max-size and --min-size almost equivalent to GNU rsync. I decided to use scan_scaled() instead of building something new that handles all the extra bits GNU rsync has. The remote rsync process gets the sizes in bytes so scaling is just a local issue. Manpage probably

rpki-client sync output at end of run with output file

2021-10-28 Thread Claudio Jeker
As in $SUBJECT said, sync the output at the end of a rpki-client run with outputheader() -- the function used to dump this info into the openbgpd output file. OK? -- :wq Claudio Index: main.c === RCS file:

Re: rpki-client sync output at end of run with output file

2021-10-28 Thread Theo Buehler
On Thu, Oct 28, 2021 at 08:21:12PM +0200, Claudio Jeker wrote: > As in $SUBJECT said, sync the output at the end of a rpki-client run with > outputheader() -- the function used to dump this info into the openbgpd > output file. > > OK? > -- > :wq Claudio > > Index: main.c >

Re: upd(4) page fault since 7.0

2021-10-28 Thread Damien Couderc
Le 26/10/2021 à 19:03, Anton Lindqvist a écrit : On Tue, Oct 26, 2021 at 05:58:12PM +0200, Damien Couderc wrote: Le 26/10/2021 à 16:11, Anton Lindqvist a écrit : On Tue, Oct 26, 2021 at 09:50:41AM +0200, Damien Couderc wrote: Le 24/10/2021 à 21:45, Anton Lindqvist a écrit : On Sun, Oct 24,

Re: rpki-client sync output at end of run with output file

2021-10-28 Thread Claudio Jeker
On Thu, Oct 28, 2021 at 08:27:40PM +0200, Theo Buehler wrote: > On Thu, Oct 28, 2021 at 08:21:12PM +0200, Claudio Jeker wrote: > > As in $SUBJECT said, sync the output at the end of a rpki-client run with > > outputheader() -- the function used to dump this info into the openbgpd > > output file.

Re: upd(4) page fault since 7.0

2021-10-28 Thread Anton Lindqvist
On Thu, Oct 28, 2021 at 08:08:36PM +0200, Damien Couderc wrote: > Le 26/10/2021 à 19:03, Anton Lindqvist a écrit : > > On Tue, Oct 26, 2021 at 05:58:12PM +0200, Damien Couderc wrote: > > > Le 26/10/2021 à 16:11, Anton Lindqvist a écrit : > > > > On Tue, Oct 26, 2021 at 09:50:41AM +0200, Damien

Re: demystify vport(4) in vport(4) and ifconfig(8)

2021-10-28 Thread David Gwynne
On Thu, Oct 28, 2021 at 04:06:39PM +0100, Stuart Henderson wrote: > On 2021/10/28 13:11, David Gwynne wrote: > > On Wed, Oct 27, 2021 at 10:12:35AM +0100, Stuart Henderson wrote: > > > On 2021/10/27 17:44, David Gwynne wrote: > > > > > > > > > benno@ suggested I look at vether(4) to adapt the

Re: upd(4) page fault since 7.0

2021-10-28 Thread Anton Lindqvist
On Thu, Oct 28, 2021 at 08:40:03PM +0200, Anton Lindqvist wrote: > On Thu, Oct 28, 2021 at 08:08:36PM +0200, Damien Couderc wrote: > > Le 26/10/2021 à 19:03, Anton Lindqvist a écrit : > > > On Tue, Oct 26, 2021 at 05:58:12PM +0200, Damien Couderc wrote: > > > > Le 26/10/2021 à 16:11, Anton

Re: demystify vport(4) in vport(4) and ifconfig(8)

2021-10-28 Thread David Gwynne
On Thu, Oct 28, 2021 at 03:43:11PM +0100, Jason McIntyre wrote: > On Thu, Oct 28, 2021 at 04:53:39PM +1000, David Gwynne wrote: > > > > > > > On 28 Oct 2021, at 15:35, Jason McIntyre wrote: > > > > > > On Thu, Oct 28, 2021 at 01:27:17PM +1000, David Gwynne wrote: > > >> > > >>> that strategy

Re: openrsync add --max-size and --min-size support

2021-10-28 Thread Sebastian Benoit
Claudio Jeker(cje...@diehard.n-r-g.com) on 2021.10.28 17:36:27 +0200: > This diff should implement --max-size and --min-size almost equivalent to > GNU rsync. I decided to use scan_scaled() instead of building something > new that handles all the extra bits GNU rsync has. > The remote rsync

Re: demystify vport(4) in vport(4) and ifconfig(8)

2021-10-28 Thread Sebastian Benoit
David Gwynne(da...@gwynne.id.au) on 2021.10.29 07:02:14 +1000: > On Thu, Oct 28, 2021 at 03:43:11PM +0100, Jason McIntyre wrote: > > On Thu, Oct 28, 2021 at 04:53:39PM +1000, David Gwynne wrote: > > > > > > > > > > On 28 Oct 2021, at 15:35, Jason McIntyre wrote: > > > > > > > > On Thu, Oct 28,

Re: demystify vport(4) in vport(4) and ifconfig(8)

2021-10-28 Thread Ingo Schwarze
Hi, Sebastian Benoit wrote on Thu, Oct 28, 2021 at 11:05:54PM +0200: > We tend to forget that there are other output formats for manpages > as well. right now, i can got to https://man.openbsd.org/ifconfig and > jump from there to all of these manpages. With them removed, i can no > longer do

Re: UNIX sockets: use vnode(9) lock to protect `v_socket' dereference

2021-10-28 Thread Vitaliy Makkoveev
ping... > On 26 Oct 2021, at 14:12, Vitaliy Makkoveev wrote: > > Another step to make UNIX sockets locking fine grained. > > The listening socket has the references from file descriptors layer and > from the vnode(9) layer. This means when we close(2)'ing such socket it > still referenced by

Re: demystify vport(4) in vport(4) and ifconfig(8)

2021-10-28 Thread Klemens Nanni
On Fri, Oct 29, 2021 at 12:57:54AM +0200, Ingo Schwarze wrote: > MANPAGER=firefox man -T html $(ifconfig -C) This doesn't work if firefox is already running as the MANPAGER firefox process exits immediately after sending the file/link to the running process, which causes mandoc to exit after

Re: demystify vport(4) in vport(4) and ifconfig(8)

2021-10-28 Thread Ingo Schwarze
Hi Klemens, Klemens Nanni wrote on Thu, Oct 28, 2021 at 11:19:30PM +: > On Fri, Oct 29, 2021 at 12:57:54AM +0200, Ingo Schwarze wrote: >> MANPAGER=firefox man -T html $(ifconfig -C) > This doesn't work if firefox is already running It is true that it sometimes works and sometimes fails