PREEMPT_RT preempts softirqs and the current implementation avoids do_softirq_own_stack() and only uses __do_softirq(). Disable the unused softirqs stacks on PREEMPT_RT to save some memory and ensure that do_softirq_own_stack() is not used bwcause it is not expected. Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
14 lines
361 B
C
14 lines
361 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
#ifndef __ASM_S390_SOFTIRQ_STACK_H
|
|
#define __ASM_S390_SOFTIRQ_STACK_H
|
|
|
|
#include <asm/lowcore.h>
|
|
#include <asm/stacktrace.h>
|
|
|
|
#ifndef CONFIG_PREEMPT_RT
|
|
static inline void do_softirq_own_stack(void)
|
|
{
|
|
call_on_stack(0, S390_lowcore.async_stack, void, __do_softirq);
|
|
}
|
|
#endif
|
|
#endif /* __ASM_S390_SOFTIRQ_STACK_H */
|