diff --git a/[refs] b/[refs] index 2a6990d7b828..da54422118ba 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: c9a443cdf7726ce8b78c3177c6ae601ce37292fc +refs/heads/master: c305d524e5dd3c3c7a6035083e30950bea1b52dc diff --git a/trunk/kernel/softirq.c b/trunk/kernel/softirq.c index 68eb5efec388..c0490464e92f 100644 --- a/trunk/kernel/softirq.c +++ b/trunk/kernel/softirq.c @@ -738,7 +738,10 @@ static int run_ksoftirqd(void * __bind_cpu) don't process */ if (cpu_is_offline((long)__bind_cpu)) goto wait_to_die; - do_softirq(); + local_irq_disable(); + if (local_softirq_pending()) + __do_softirq(); + local_irq_enable(); preempt_enable_no_resched(); cond_resched(); preempt_disable();