]> git.itanic.dy.fi Git - linux-stable/commit
mei: vsc: Call wake_up() in the threaded IRQ handler
authorSakari Ailus <sakari.ailus@linux.intel.com>
Mon, 19 Feb 2024 19:58:05 +0000 (21:58 +0200)
committerSasha Levin <sashal@kernel.org>
Tue, 26 Mar 2024 22:17:30 +0000 (18:17 -0400)
commit76a5e0951a4f12685261c65f2cab6372c64cf363
tree169bb684beaaa08709a3d4191dd3c253e5cccacd
parent7fad138dcb4296053ac26822404d35df7991ddd1
mei: vsc: Call wake_up() in the threaded IRQ handler

[ Upstream commit 058a38acba15fd8e7b262ec6e17c4204cb15f984 ]

The hard IRQ handler vsc_tp_irq() is called with a raw spinlock taken.
wake_up() acquires a spinlock, a sleeping lock on PREEMPT_RT. This leads
to sleeping in atomic context.

Move the wake_up() call to the threaded IRQ handler vsc_tp_thread_isr()
where it can be safely called.

Fixes: 566f5ca97680 ("mei: Add transport driver for IVSC device")
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Tested-and-Reviewed-by: Wentong Wu <wentong.wu@intel.com>
Link: https://lore.kernel.org/r/20240219195807.517742-2-sakari.ailus@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/misc/mei/vsc-tp.c