aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/mgmt.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/bluetooth/mgmt.c')
-rw-r--r--net/bluetooth/mgmt.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
index d756644163bc..6df4af6e99cc 100644
--- a/net/bluetooth/mgmt.c
+++ b/net/bluetooth/mgmt.c
@@ -850,13 +850,16 @@ static int set_discoverable(struct sock *sk, u16 index, void *data, u16 len)
850 return cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE, 850 return cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE,
851 MGMT_STATUS_INVALID_PARAMS); 851 MGMT_STATUS_INVALID_PARAMS);
852 852
853 timeout = get_unaligned_le16(&cp->timeout);
854 if (!cp->val && timeout > 0)
855 return cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE,
856 MGMT_STATUS_INVALID_PARAMS);
857
853 hdev = hci_dev_get(index); 858 hdev = hci_dev_get(index);
854 if (!hdev) 859 if (!hdev)
855 return cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE, 860 return cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE,
856 MGMT_STATUS_INVALID_PARAMS); 861 MGMT_STATUS_INVALID_PARAMS);
857 862
858 timeout = get_unaligned_le16(&cp->timeout);
859
860 hci_dev_lock(hdev); 863 hci_dev_lock(hdev);
861 864
862 if (!hdev_is_powered(hdev) && timeout > 0) { 865 if (!hdev_is_powered(hdev) && timeout > 0) {