The patch titled Add IRQF_IRQPOLL flag on sh has been removed from the -mm tree. Its filename was add-irqf_irqpoll-flag-on-sh.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Add IRQF_IRQPOLL flag on sh From: Bernhard Walle <bwalle@xxxxxxx> Add IRQF_IRQPOLL on each timer interrupt on SH2. Signed-off-by: Bernhard Walle <bwalle@xxxxxxx> Cc: Paul Mundt <lethal@xxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/sh/kernel/timers/timer-cmt.c | 2 +- arch/sh/kernel/timers/timer-mtu2.c | 2 +- arch/sh/kernel/timers/timer-tmu.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff -puN arch/sh/kernel/timers/timer-cmt.c~add-irqf_irqpoll-flag-on-sh arch/sh/kernel/timers/timer-cmt.c --- a/arch/sh/kernel/timers/timer-cmt.c~add-irqf_irqpoll-flag-on-sh +++ a/arch/sh/kernel/timers/timer-cmt.c @@ -115,7 +115,7 @@ static irqreturn_t cmt_timer_interrupt(i static struct irqaction cmt_irq = { .name = "timer", .handler = cmt_timer_interrupt, - .flags = IRQF_DISABLED | IRQF_TIMER, + .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, .mask = CPU_MASK_NONE, }; diff -puN arch/sh/kernel/timers/timer-mtu2.c~add-irqf_irqpoll-flag-on-sh arch/sh/kernel/timers/timer-mtu2.c --- a/arch/sh/kernel/timers/timer-mtu2.c~add-irqf_irqpoll-flag-on-sh +++ a/arch/sh/kernel/timers/timer-mtu2.c @@ -110,7 +110,7 @@ static irqreturn_t mtu2_timer_interrupt( static struct irqaction mtu2_irq = { .name = "timer", .handler = mtu2_timer_interrupt, - .flags = IRQF_DISABLED | IRQF_TIMER, + .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, .mask = CPU_MASK_NONE, }; diff -puN arch/sh/kernel/timers/timer-tmu.c~add-irqf_irqpoll-flag-on-sh arch/sh/kernel/timers/timer-tmu.c --- a/arch/sh/kernel/timers/timer-tmu.c~add-irqf_irqpoll-flag-on-sh +++ a/arch/sh/kernel/timers/timer-tmu.c @@ -99,7 +99,7 @@ static irqreturn_t tmu_timer_interrupt(i static struct irqaction tmu_irq = { .name = "timer", .handler = tmu_timer_interrupt, - .flags = IRQF_DISABLED | IRQF_TIMER, + .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, .mask = CPU_MASK_NONE, }; _ Patches currently in -mm which might be from bwalle@xxxxxxx are origin.patch git-r8169.patch use-unchecked_isa_dma-in-sd_revalidate_disk.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html