summaryrefslogtreecommitdiffstats
path: root/drivers/w1
diff options
context:
space:
mode:
authorThomas Gleixner2015-06-21 20:16:06 +0200
committerThomas Gleixner2015-06-25 11:56:50 +0200
commit3fb250ed39b2f883b566826132e04626da5910aa (patch)
tree054e0d737a7852c0e8901fe76d4e183e3c0a4188 /drivers/w1
parentgpio/dwapb: Fix race in installing chained IRQ handler (diff)
downloadkernel-qcow2-linux-3fb250ed39b2f883b566826132e04626da5910aa.tar.gz
kernel-qcow2-linux-3fb250ed39b2f883b566826132e04626da5910aa.tar.xz
kernel-qcow2-linux-3fb250ed39b2f883b566826132e04626da5910aa.zip
gpio/msic: 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: Linus Walleij <linus.walleij@linaro.org> Cc: Alexandre Courbot <gnurou@gmail.com> Cc: linux-gpio@vger.kernel.org
Diffstat (limited to 'drivers/w1')
0 files changed, 0 insertions, 0 deletions