[ovs-dev] [PATCH v9] dpif-netlink: distribute polling to discreet handlers

2020-09-18 Thread Mark Gray
From: Aaron Conole Currently, the channel handlers are polled globally. On some systems, this causes a thundering herd issue where multiple handler threads become active, only to do no work and immediately sleep. The approach here is to push the netlink socket channels to discreet handler threa

Re: [ovs-dev] [PATCH v9] dpif-netlink: distribute polling to discreet handlers

2020-10-23 Thread Aaron Conole
Mark Gray writes: > From: Aaron Conole > > Currently, the channel handlers are polled globally. On some > systems, this causes a thundering herd issue where multiple > handler threads become active, only to do no work and immediately > sleep. > > The approach here is to push the netlink socket

Re: [ovs-dev] [PATCH v9] dpif-netlink: distribute polling to discreet handlers

2020-10-27 Thread Flavio Leitner
On Fri, Sep 18, 2020 at 02:48:17PM -0400, Mark Gray wrote: > From: Aaron Conole > > Currently, the channel handlers are polled globally. On some > systems, this causes a thundering herd issue where multiple > handler threads become active, only to do no work and immediately > sleep. > > The app

Re: [ovs-dev] [PATCH v9] dpif-netlink: distribute polling to discreet handlers

2020-10-28 Thread Mark Gray
On 27/10/2020 20:29, Flavio Leitner wrote: Thanks again for the review Flavio. Comments below. v10 @ https://mail.openvswitch.org/pipermail/ovs-dev/2020-October/376730.html > On Fri, Sep 18, 2020 at 02:48:17PM -0400, Mark Gray wrote: >> From: Aaron Conole >> >> Currently, the channel handlers a