Re: [tip:irq/urgent] irq: Ensure irq_exit() code runs with interrupts disabled

2013-02-21 Thread Thomas Gleixner
On Thu, 21 Feb 2013, Frederic Weisbecker wrote: > > void irq_exit(void) > > { > > +#ifndef __ARCH_IRQ_EXIT_IRQS_DISABLED > > + unsigned long flags; > > + > > + local_irq_save(flags); > > +#else > > + WARN_ON_ONCE(!irqs_disabled(); > > Missing closing parenthesis. Dammit. --

[tip:irq/urgent] irq: Ensure irq_exit() code runs with interrupts disabled

2013-02-21 Thread tip-bot for Thomas Gleixner
Commit-ID: 630e7580f681475d92d87e78373e4136096e12f2 Gitweb: http://git.kernel.org/tip/630e7580f681475d92d87e78373e4136096e12f2 Author: Thomas Gleixner AuthorDate: Wed, 20 Feb 2013 22:00:48 +0100 Committer: Thomas Gleixner CommitDate: Thu, 21 Feb 2013 18:32:44 +0100 irq: Ensure irq_exit