commit | c7259cd7af757ddcd65701c37099dcddae2054f0 | [log] [tgz] |
---|---|---|
author | Thomas Gleixner <tglx@linutronix.de> | Mon Feb 07 09:52:27 2011 +0100 |
committer | Thomas Gleixner <tglx@linutronix.de> | Sat Feb 19 12:58:09 2011 +0100 |
tree | 42f957d4c516563e01870199b9ffc6e4e00cdf4a | |
parent | fa27271bc8d230355c1f24ddea103824fdc12de6 [diff] |
genirq: Do not poll disabled, percpu and timer interrupts There is no point in polling disabled lines. percpu does not make sense at all because we only poll on the cpu we're currently running on. Also polling per_cpu interrupts is racy as hell. The handler runs without locking so we might get a huge surprise. If the timer interrupt needs polling, then we wont get there anyway. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>