提交 335b3375 编写于 作者: S Samuel Holland 提交者: Zheng Zengkai

riscv: Fix irq_work when SMP is disabled

stable inclusion
from stable-v5.10.121
commit d2f3acde3d52b3b351db09e2e2a5e5812eda2735
category: bugfix
bugzilla: https://gitee.com/openeuler/kernel/issues/I5L6CQ

Reference: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=d2f3acde3d52b3b351db09e2e2a5e5812eda2735

--------------------------------

commit 22732728 upstream.

irq_work is triggered via an IPI, but the IPI infrastructure is not
included in uniprocessor kernels. As a result, irq_work never runs.
Fall back to the tick-based irq_work implementation on uniprocessor
configurations.

Fixes: 29844792 ("riscv: Support irq_work via self IPIs")
Signed-off-by: NSamuel Holland <samuel@sholland.org>
Reviewed-by: NHeiko Stuebner <heiko@sntech.de>
Link: https://lore.kernel.org/r/20220430030025.58405-1-samuel@sholland.org
Cc: stable@vger.kernel.org
Signed-off-by: NPalmer Dabbelt <palmer@rivosinc.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: NZheng Zengkai <zhengzengkai@huawei.com>
Acked-by: NXie XiuQi <xiexiuqi@huawei.com>
上级 ebfcead8
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
static inline bool arch_irq_work_has_interrupt(void) static inline bool arch_irq_work_has_interrupt(void)
{ {
return true; return IS_ENABLED(CONFIG_SMP);
} }
extern void arch_irq_work_raise(void); extern void arch_irq_work_raise(void);
#endif /* _ASM_RISCV_IRQ_WORK_H */ #endif /* _ASM_RISCV_IRQ_WORK_H */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册