Преглед на файлове

Bluetooth: Fix updating settings when there are no HCI commands to send

It is possible that the Set Connectable management command doesn't cause
any HCI commands to send (such as when BR/EDR is disabled). We can't
just send a response to user space in this case but must also update the
necessary device flags and settings. This patch fixes the issue by using
the recently introduced set_connectable_update_settings function.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Johan Hedberg преди 12 години
родител
ревизия
a81070ba37
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      net/bluetooth/mgmt.c

+ 2 - 2
net/bluetooth/mgmt.c

@@ -1483,8 +1483,8 @@ static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
 	if (err < 0) {
 	if (err < 0) {
 		mgmt_pending_remove(cmd);
 		mgmt_pending_remove(cmd);
 		if (err == -ENODATA)
 		if (err == -ENODATA)
-			err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE,
-						hdev);
+			err = set_connectable_update_settings(hdev, sk,
+							      cp->val);
 		goto failed;
 		goto failed;
 	}
 	}