Merge tag 'timers-core-2023-09-04-v2' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / include / asm-generic / softirq_stack.h
CommitLineData
db1cc7ae
TG
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2#ifndef __ASM_GENERIC_SOFTIRQ_STACK_H
3#define __ASM_GENERIC_SOFTIRQ_STACK_H
4
8cbb2b50 5#ifdef CONFIG_SOFTIRQ_ON_OWN_STACK
db1cc7ae
TG
6void do_softirq_own_stack(void);
7#else
8static inline void do_softirq_own_stack(void)
9{
10 __do_softirq();
11}
12#endif
13
14#endif