[PATCH] revert bogus softirq changes

This snuck in with an x86_64 change. Thanks to Richard Purdie
<rpurdie@rpsys.net> for spotting it.

Cc: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Andrew Morton and committed by Linus Torvalds c70f5d66 6d1d07e4

+2 -2
+2 -2
kernel/softirq.c
··· 86 /* Reset the pending bitmask before enabling irqs */ 87 local_softirq_pending() = 0; 88 89 - //local_irq_enable(); 90 91 h = softirq_vec; 92 ··· 99 pending >>= 1; 100 } while (pending); 101 102 - //local_irq_disable(); 103 104 pending = local_softirq_pending(); 105 if (pending && --max_restart)
··· 86 /* Reset the pending bitmask before enabling irqs */ 87 local_softirq_pending() = 0; 88 89 + local_irq_enable(); 90 91 h = softirq_vec; 92 ··· 99 pending >>= 1; 100 } while (pending); 101 102 + local_irq_disable(); 103 104 pending = local_softirq_pending(); 105 if (pending && --max_restart)