mailbox: Convert from tasklet to BH workqueue
authorAllen Pais <apais@linux.microsoft.com>
Wed, 27 Mar 2024 16:03:10 +0000 (16:03 +0000)
committerJassi Brar <jassisinghbrar@gmail.com>
Mon, 20 May 2024 03:33:28 +0000 (22:33 -0500)
commitc9834d848da1cc92e2b298552c1a2b509e9b824c
tree47517663efb073341deb19e534d123488bc5f91f
parent747a69a119c469121385543f21c2d08562968ccc
mailbox: Convert from tasklet to BH workqueue

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 regular workqueues except that the queued work items
are executed in the BH context.

Based on the work done by Tejun Heo <tj@kernel.org>
Branch: https://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git for-6.10

Signed-off-by: Allen Pais <allen.lkml@gmail.com>
Signed-off-by: Jassi Brar <jassisinghbrar@gmail.com>
drivers/mailbox/bcm-pdc-mailbox.c
drivers/mailbox/imx-mailbox.c