diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2015-06-21 19:00:31 (GMT) |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-06-25 09:57:56 (GMT) |
commit | 20f83e717f287fd13fd85359624f10f3206bd34d (patch) | |
tree | 223d47a55e5bc0b8ae49602fa361141adb10811b /ipc | |
parent | 09c5cb942f7545e53819ee2ca72fe843d23880e5 (diff) | |
download | linux-20f83e717f287fd13fd85359624f10f3206bd34d.tar.xz |
MIPS/ath25: Fix race in installing chained IRQ handler
Fix a race where a pending interrupt could be received and the handler
called before the handler's data has been setup, by converting to
irq_set_chained_handler_and_data().
Search and conversion was done with coccinelle:
@@
expression E1, E2, E3;
@@
(
-if (irq_set_chained_handler(E1, E3) != 0)
- BUG();
|
-irq_set_chained_handler(E1, E3);
)
-irq_set_handler_data(E1, E2);
+irq_set_chained_handler_and_data(E1, E3, E2);
@@
expression E1, E2, E3;
@@
(
-if (irq_set_chained_handler(E1, E3) != 0)
- BUG();
...
|
-irq_set_chained_handler(E1, E3);
...
)
-irq_set_handler_data(E1, E2);
+irq_set_chained_handler_and_data(E1, E3, E2);
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Sergey Ryazanov <ryazanov.s.a@gmail.com>
Cc: linux-mips@linux-mips.org
Diffstat (limited to 'ipc')
0 files changed, 0 insertions, 0 deletions