On Tue, Jun 28, 2022 at 12:48:50PM +0200, Jason A. Donenfeld wrote:
$ curl https://lore.kernel.org/lkml/20220627104955.534013-1-Jason@zx2c4.com/raw | git am
That one, if you want to give it a spin and see if that 5-6s is back to ~1s or less.
Whatever caused kthread_should_stop to return true should have woken the thread and caused schedule_timeout to return.
If it's not waking the thread up then we should find out why.
Oh wait you're checking kthread_should_stop before the schedule call instead of afterwards, that would do it.
Cheers,