Bluetooth: Add public mgmt function to send New Settings event
authorJohan Hedberg <johan.hedberg@intel.com>
Sat, 5 Oct 2013 10:01:05 +0000 (12:01 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Sat, 5 Oct 2013 10:03:38 +0000 (03:03 -0700)
A function is needed so that the HCI event processing can ask the mgmt
code to emit a new settings event. This is necessary e.g. when the event
processing does updates to mgmt related states without any dependency of
actual mgmt commands.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
include/net/bluetooth/hci_core.h
net/bluetooth/mgmt.c

index e09c30577b3a071ede7f745f512885dd46a7b000..079c5c55c829e867ff148187f69eaa0a186dbc87 100644 (file)
@@ -1123,6 +1123,7 @@ void hci_sock_dev_event(struct hci_dev *hdev, int event);
 int mgmt_control(struct sock *sk, struct msghdr *msg, size_t len);
 int mgmt_index_added(struct hci_dev *hdev);
 int mgmt_index_removed(struct hci_dev *hdev);
+int mgmt_new_settings(struct hci_dev *hdev);
 int mgmt_set_powered_failed(struct hci_dev *hdev, int err);
 int mgmt_powered(struct hci_dev *hdev, u8 powered);
 int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable);
index 7e43d376e2e69194bf8191c7d7d48ca8f0e3489d..6e808d1d78f39f0abd6175692ba2562cf73530af 100644 (file)
@@ -890,6 +890,11 @@ static int new_settings(struct hci_dev *hdev, struct sock *skip)
        return mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev), skip);
 }
 
+int mgmt_new_settings(struct hci_dev *hdev)
+{
+       return new_settings(hdev, NULL);
+}
+
 struct cmd_lookup {
        struct sock *sk;
        struct hci_dev *hdev;