brintos

brintos / linux-shallow public Read only

0
0
Text · 281 B · 2a67aed Raw
15 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2#ifndef __ASM_GENERIC_SOFTIRQ_STACK_H3#define __ASM_GENERIC_SOFTIRQ_STACK_H4 5#ifdef CONFIG_SOFTIRQ_ON_OWN_STACK6void do_softirq_own_stack(void);7#else8static inline void do_softirq_own_stack(void)9{10	__do_softirq();11}12#endif13 14#endif15