Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 #ifndef __ASM_GENERIC_SOFTIRQ_STACK_H
0003 #define __ASM_GENERIC_SOFTIRQ_STACK_H
0004 
0005 #ifdef CONFIG_SOFTIRQ_ON_OWN_STACK
0006 void do_softirq_own_stack(void);
0007 #else
0008 static inline void do_softirq_own_stack(void)
0009 {
0010     __do_softirq();
0011 }
0012 #endif
0013 
0014 #endif