Re: [PATCH] usb/c67x00: Replace tasklet with work

2021-01-11 Thread Davidlohr Bueso
On Mon, 11 Jan 2021, Hillf Danton wrote: On Sun, 10 Jan 2021 20:40:50 -0800 Davidlohr Bueso wrote: Tasklets have long been deprecated as being too heavy on the system by running in irq context - and this is not a performance critical path. If a higher priority process wants to run, it must

Re: [PATCH] usb/c67x00: Replace tasklet with work

2021-01-11 Thread Sergei Shtylyov
Hello! On 11.01.2021 7:40, Davidlohr Bueso wrote: Tasklets have long been deprecated as being too heavy on the system by running in irq context - and this is not a performance critical path. If a higher priority process wants to run, it must wait for the tasklet to finish before doing so.

[PATCH] usb/c67x00: Replace tasklet with work

2021-01-10 Thread Davidlohr Bueso
Tasklets have long been deprecated as being too heavy on the system by running in irq context - and this is not a performance critical path. If a higher priority process wants to run, it must wait for the tasklet to finish before doing so. c67x00_do_work() will now run in process context and have