platform/goldfish: Convert pipe tasklet to threaded irq
authorDavidlohr Bueso <dave@stgolabs.net>
Fri, 15 Jan 2021 00:20:14 +0000 (16:20 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 27 Jan 2021 13:57:06 +0000 (14:57 +0100)
commit2c104a469a4ce276117acda94ccf922c3b82d735
treebf0019b21384ea7c23f52836db5e18ab92b16d8c
parentafe9017901761d04a106916e02619caf0d2afbf5
platform/goldfish: Convert pipe tasklet to threaded irq

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. A more suitable equivalent
is to converted to threaded irq instead and deal with the signaled
pipes in task context.

Signed-off-by: Davidlohr Bueso <dbueso@suse.de>
Link: https://lore.kernel.org/r/20210115002014.117528-1-dave@stgolabs.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/platform/goldfish/goldfish_pipe.c