mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-09-04 20:19:47 +08:00 
			
		
		
		
	 db1cc7aede
			
		
	
	
		db1cc7aede
		
	
	
	
	
		
			
			To avoid include recursion hell move the do_softirq_own_stack() related content into a generic asm header and include it from all places in arch/ which need the prototype. This allows architectures to provide an inline implementation of do_softirq_own_stack() without introducing a lot of #ifdeffery all over the place. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Kees Cook <keescook@chromium.org> Link: https://lore.kernel.org/r/20210210002513.289960691@linutronix.de
		
			
				
	
	
		
			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
 |