Re: [ovs-dev] [PATCH v2] dpif-netdev: Do not create handler threads.

2024-02-29 Thread Eelco Chaudron
On 20 Feb 2024, at 17:50, Mike Pattrick wrote: > On Tue, Feb 20, 2024 at 4:32 AM Eelco Chaudron wrote: >> >> Avoid unnecessary thread creation as no upcalls are generated, >> resulting in idle threads waiting for process termination. >> >> This optimization significantly reduces memory usage,

Re: [ovs-dev] [PATCH v2] dpif-netdev: Do not create handler threads.

2024-02-20 Thread Mike Pattrick
On Tue, Feb 20, 2024 at 4:32 AM Eelco Chaudron wrote: > > Avoid unnecessary thread creation as no upcalls are generated, > resulting in idle threads waiting for process termination. > > This optimization significantly reduces memory usage, cutting it > by half on a 128 CPU/thread system during

[ovs-dev] [PATCH v2] dpif-netdev: Do not create handler threads.

2024-02-20 Thread Eelco Chaudron
Avoid unnecessary thread creation as no upcalls are generated, resulting in idle threads waiting for process termination. This optimization significantly reduces memory usage, cutting it by half on a 128 CPU/thread system during testing, with the number of threads reduced from 95 to 0.