softirq_stack.h 370 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. #ifndef __ASM_S390_SOFTIRQ_STACK_H
  3. #define __ASM_S390_SOFTIRQ_STACK_H
  4. #include <asm/lowcore.h>
  5. #include <asm/stacktrace.h>
  6. #ifdef CONFIG_SOFTIRQ_ON_OWN_STACK
  7. static inline void do_softirq_own_stack(void)
  8. {
  9. call_on_stack(0, S390_lowcore.async_stack, void, __do_softirq);
  10. }
  11. #endif
  12. #endif /* __ASM_S390_SOFTIRQ_STACK_H */