aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth
diff options
context:
space:
mode:
authorBalakrishna Godavarthi <bgodavar@codeaurora.org>2018-08-22 17:34:11 +0530
committerMarcel Holtmann <marcel@holtmann.org>2018-09-27 11:59:58 +0200
commit7cf7846d27bfc9731e449857db3eec5e0e9701ba (patch)
treed12c8bd3dbcb2b1c4dd2dbeaeee061fb88de4341 /drivers/bluetooth
parentBluetooth: hci_qca: Remove hdev dereference in qca_close(). (diff)
downloadlinux-dev-7cf7846d27bfc9731e449857db3eec5e0e9701ba.tar.xz
linux-dev-7cf7846d27bfc9731e449857db3eec5e0e9701ba.zip
Bluetooth: hci_serdev: clear HCI_UART_PROTO_READY to avoid closing proto races
Clearing HCI_UART_PROTO_READY will avoid usage of proto function pointers before running the proto close function pointer. There is chance of kernel crash, due to usage of non proto close function pointers after proto close. Signed-off-by: Balakrishna Godavarthi <bgodavar@codeaurora.org> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/hci_serdev.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/bluetooth/hci_serdev.c b/drivers/bluetooth/hci_serdev.c
index aa2543b3c286..46e20444ba19 100644
--- a/drivers/bluetooth/hci_serdev.c
+++ b/drivers/bluetooth/hci_serdev.c
@@ -368,6 +368,7 @@ void hci_uart_unregister_device(struct hci_uart *hu)
{
struct hci_dev *hdev = hu->hdev;
+ clear_bit(HCI_UART_PROTO_READY, &hu->flags);
hci_unregister_dev(hdev);
hci_free_dev(hdev);