• Bernhard Walle's avatar
    Add IRQF_IRQPOLL flag (common code) · d85a60d8
    Bernhard Walle authored
    irqpoll is broken on some architectures that don't use the IRQ 0 for the timer
    interrupt like IA64.  This patch adds a IRQF_IRQPOLL flag.
    
    Each architecture is handled in a separate pach.  As I left the irq == 0 as
    condition, this should not break existing architectures that use timer_irq ==
    0 and that I did't address with that patch (because I don't know).
    
    This patch:
    
    This patch adds a IRQF_IRQPOLL flag that the interrupt registration code could
    use for the interrupt it wants to use for IRQ polling.
    
    Because this must not be the timer interrupt, an additional flag was added
    instead of re-using the IRQF_TIMER constant.  Until all architectures will
    have an IRQF_IRQPOLL interrupt, irq == 0 will stay as alternative as it should
    not break anything.
    
    Also, note_interrupt() is called on CPU-specific interrupts to be used as
    interrupt source for IRQ polling.
    Signed-off-by: default avatarBernhard Walle <bwalle@suse.de>
    Cc: Russell King <rmk@arm.linux.org.uk>
    Cc: Kyle McMartin <kyle@mcmartin.ca>
    Cc: Matthew Wilcox <willy@debian.org>
    Cc: Grant Grundler <grundler@google.com>
    Cc: Paul Mundt <lethal@linux-sh.org>
    Cc: "Luck, Tony" <tony.luck@intel.com>
    Cc: Ingo Molnar <mingo@elte.hu>
    Cc: Thomas Gleixner <tglx@linutronix.de>
    Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
    Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
    Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
    d85a60d8
handle.c 6.24 KB