mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	irq: Don't re-enable interrupts at the end of irq_exit
Commit 74eed0163d
"irq: Ensure irq_exit() code runs with interrupts disabled"
restore interrupts flags in the end of irq_exit() for archs
that don't define __ARCH_IRQ_EXIT_IRQS_DISABLED.
However always returning from irq_exit() with interrupts
disabled should not be a problem for these archs. Prior to
this commit this was already happening anytime we processed
pending softirqs anyway.
Suggested-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
			
			
This commit is contained in:
		
							parent
							
								
									4d4c4e24cf
								
							
						
					
					
						commit
						4cd5d1115c
					
				
					 1 changed files with 1 additions and 6 deletions
				
			
		| 
						 | 
				
			
			@ -334,9 +334,7 @@ static inline void invoke_softirq(void)
 | 
			
		|||
void irq_exit(void)
 | 
			
		||||
{
 | 
			
		||||
#ifndef __ARCH_IRQ_EXIT_IRQS_DISABLED
 | 
			
		||||
	unsigned long flags;
 | 
			
		||||
 | 
			
		||||
	local_irq_save(flags);
 | 
			
		||||
	local_irq_disable();
 | 
			
		||||
#else
 | 
			
		||||
	WARN_ON_ONCE(!irqs_disabled());
 | 
			
		||||
#endif
 | 
			
		||||
| 
						 | 
				
			
			@ -353,9 +351,6 @@ void irq_exit(void)
 | 
			
		|||
		tick_nohz_irq_exit();
 | 
			
		||||
#endif
 | 
			
		||||
	rcu_irq_exit();
 | 
			
		||||
#ifndef __ARCH_IRQ_EXIT_IRQS_DISABLED
 | 
			
		||||
	local_irq_restore(flags);
 | 
			
		||||
#endif
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue