Re: [PATCH 6/8] net: tcp: tsq: Convert from tasklet to BH workqueue

2025-05-24 Thread Jason Xing
On Tue, Jan 30, 2024 at 5:24 PM Tejun Heo wrote: > > The only generic interface to execute asynchronously in the BH context is > tasklet; however, it's marked deprecated and has some design flaws. To > replace tasklets, BH workqueue support was recently added. A BH workqueue > behaves similarly to

Re: [PATCH 6/8] net: tcp: tsq: Convert from tasklet to BH workqueue

2025-05-27 Thread Jason Xing
On Wed, May 28, 2025 at 2:55 AM Tejun Heo wrote: > > Hello, > > On Sun, May 25, 2025 at 11:51:55AM +0800, Jason Xing wrote: > > Sorry to revive the old thread! I noticed this change because I've > > been doing an investigation around TSQ recently. I'm very ca