Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 #ifndef __ASM_S390_SOFTIRQ_STACK_H
0003 #define __ASM_S390_SOFTIRQ_STACK_H
0004 
0005 #include <asm/lowcore.h>
0006 #include <asm/stacktrace.h>
0007 
0008 #ifdef CONFIG_SOFTIRQ_ON_OWN_STACK
0009 static inline void do_softirq_own_stack(void)
0010 {
0011     call_on_stack(0, S390_lowcore.async_stack, void, __do_softirq);
0012 }
0013 #endif
0014 #endif /* __ASM_S390_SOFTIRQ_STACK_H */