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

2021-04-30 Thread Mark Gray
On 29/10/2020 21:15, Flavio Leitner wrote: > On Wed, Oct 28, 2020 at 02:17:06PM -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

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

2020-11-26 Thread Matteo Croce
On Thu, Nov 26, 2020 at 9:25 PM Paolo Valerio wrote: > > Hi Mark, > > 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

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

2020-11-26 Thread Paolo Valerio
Hi Mark, 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 netli

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

2020-10-29 Thread Flavio Leitner
On Wed, Oct 28, 2020 at 02:17:06PM -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

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

2020-10-28 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