mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
15 lines
286 B
C
15 lines
286 B
C
![]() |
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||
|
#ifndef __ASM_GENERIC_SOFTIRQ_STACK_H
|
||
|
#define __ASM_GENERIC_SOFTIRQ_STACK_H
|
||
|
|
||
|
#ifdef CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK
|
||
|
void do_softirq_own_stack(void);
|
||
|
#else
|
||
|
static inline void do_softirq_own_stack(void)
|
||
|
{
|
||
|
__do_softirq();
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|