Re: Reuse VM ids.

2018-11-23 Thread Ori Bernstein
On Fri, 16 Nov 2018 16:15:14 +0100, Reyk Floeter wrote: > On Sat, Oct 27, 2018 at 02:53:16PM -0700, Ori Bernstein wrote: > > On Fri, 26 Oct 2018 01:57:15 +0200, Reyk Floeter wrote: > > > > > On Tue, Oct 23, 2018 at 10:21:08PM -0700, Ori Bernstein wrote: > > > > On Mon, 8 Oct 2018 07:59:15

Re: pass prefixlen to rtable_mpath_reprio instead of mask

2018-11-23 Thread Sebastian Benoit
ok benno@ Claudio Jeker(cje...@diehard.n-r-g.com) on 2018.11.23 10:48:19 +0100: > This changes rtable_mpath_reprio() to take the prefixlen as argument > instead of the mask. ART is using the prefixlen internally and since we > switched to ART some time ago it no longer makes sense to convert the

Re: relayd and TLS client cert verification

2018-11-23 Thread Sebastian Benoit
Ashe Connor(a...@kivikakk.ee) on 2018.11.23 05:55:55 +: > Hi all, > > It appears that relayd doesn't support TLS client certificate validation > (in the manner that httpd does with "tls client ca [cafile]"). Would > there be interest in a patch that added such support? yes, a patch to

bgpd refactor aspath_match a bit

2018-11-23 Thread Claudio Jeker
For origin validation I chacked the source_as in struct rde_aspath this is not really the right place. It should be in struct aspath since that holds all the ASPATH related stuff. Change this, move aspath_match out of util.c back into rde_attr.c and adjust code to use the cached value also in

Re: net80211: less frequent background scans

2018-11-23 Thread Claudio Jeker
On Fri, Nov 23, 2018 at 01:34:54PM +0100, Stefan Sperling wrote: > Every time we settle for the same AP after a background scan, > a timeout value is increased to avoid repeated background scans > in situations where no better AP is available. > > The backoff currently increments in steps of half

net80211: less frequent background scans

2018-11-23 Thread Stefan Sperling
Every time we settle for the same AP after a background scan, a timeout value is increased to avoid repeated background scans in situations where no better AP is available. The backoff currently increments in steps of half a second. This causes very frequent background scans for a few minutes

Re: [RFC PATCH] [vmm] Lightweight mechanism to kick virtio VQs

2018-11-23 Thread Sergio Lopez
On Fri, Oct 19, 2018 at 08:32:52PM +0200, Sergio Lopez wrote: > Yes, I ran some random read and random write tests with fio. The Guest > is Linux, mainly because its virtio implementation is more mature. Next > week I'll try with OpenBSD. Here are the (long due) numbers with an OpenBSD 6.4 Guest.

pass prefixlen to rtable_mpath_reprio instead of mask

2018-11-23 Thread Claudio Jeker
This changes rtable_mpath_reprio() to take the prefixlen as argument instead of the mask. ART is using the prefixlen internally and since we switched to ART some time ago it no longer makes sense to convert the prefixlen into a mask and back again. OK? -- :wq Claudio Index: net/route.c