diff options
-rw-r--r-- | net/bluetooth/mgmt.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index e33b12e09270..af077abdfa98 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c | |||
@@ -1619,6 +1619,11 @@ static int start_discovery(struct sock *sk, u16 index) | |||
1619 | 1619 | ||
1620 | hci_dev_lock_bh(hdev); | 1620 | hci_dev_lock_bh(hdev); |
1621 | 1621 | ||
1622 | if (!test_bit(HCI_UP, &hdev->flags)) { | ||
1623 | err = cmd_status(sk, index, MGMT_OP_START_DISCOVERY, ENETDOWN); | ||
1624 | goto failed; | ||
1625 | } | ||
1626 | |||
1622 | cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, index, NULL, 0); | 1627 | cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, index, NULL, 0); |
1623 | if (!cmd) { | 1628 | if (!cmd) { |
1624 | err = -ENOMEM; | 1629 | err = -ENOMEM; |