diff options
author | Johan Hovold <johan@kernel.org> | 2017-04-26 06:24:21 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-05-18 10:43:55 -0400 |
commit | 1e948479b3d63e3ac0ecca13cbf4921c7d17c168 (patch) | |
tree | 3ddc8770c4694b8652b7353f7ba42433f57f8897 | |
parent | 5c9d6abed9e0a061de252a53ab687a1171502e81 (diff) |
serial: ifx6x60: fix use-after-free on module unload
Make sure to deregister the SPI driver before releasing the tty driver
to avoid use-after-free in the SPI remove callback where the tty
devices are deregistered.
Fixes: 72d4724ea54c ("serial: ifx6x60: Add modem power off function in the platform reboot process")
Cc: stable <stable@vger.kernel.org> # 3.8
Cc: Jun Chen <jun.d.chen@intel.com>
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/tty/serial/ifx6x60.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/ifx6x60.c b/drivers/tty/serial/ifx6x60.c index 157883653256..f190a84a0246 100644 --- a/drivers/tty/serial/ifx6x60.c +++ b/drivers/tty/serial/ifx6x60.c | |||
@@ -1382,9 +1382,9 @@ static struct spi_driver ifx_spi_driver = { | |||
1382 | static void __exit ifx_spi_exit(void) | 1382 | static void __exit ifx_spi_exit(void) |
1383 | { | 1383 | { |
1384 | /* unregister */ | 1384 | /* unregister */ |
1385 | spi_unregister_driver(&ifx_spi_driver); | ||
1385 | tty_unregister_driver(tty_drv); | 1386 | tty_unregister_driver(tty_drv); |
1386 | put_tty_driver(tty_drv); | 1387 | put_tty_driver(tty_drv); |
1387 | spi_unregister_driver(&ifx_spi_driver); | ||
1388 | unregister_reboot_notifier(&ifx_modem_reboot_notifier_block); | 1388 | unregister_reboot_notifier(&ifx_modem_reboot_notifier_block); |
1389 | } | 1389 | } |
1390 | 1390 | ||