aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/mgmt.c
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2011-04-28 14:29:03 -0400
committerGustavo F. Padovan <padovan@profusion.mobi>2011-04-28 15:14:43 -0400
commit4df378a10e31698df1679f3329301d773a654b61 (patch)
tree033d9f8267801fd657339fd0299c96979556930f /net/bluetooth/mgmt.c
parent4748fed2d1a2a7a816277754498b8aa70850e051 (diff)
Bluetooth: Add store_hint parameter to mgmt_new_key
Even for keys that shouldn't be stored some use cases require the knowledge of a new key having been created so that the conclusion of a successful pairing can be made. Therefore, always send the mgmt_new_key event but add a store_hint parameter to it to indicate to user space whether the key should be stored or not. Signed-off-by: Johan Hedberg <johan.hedberg@nokia.com> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth/mgmt.c')
-rw-r--r--net/bluetooth/mgmt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
index 232ea8bfff19..2481d257ed98 100644
--- a/net/bluetooth/mgmt.c
+++ b/net/bluetooth/mgmt.c
@@ -1858,12 +1858,13 @@ int mgmt_connectable(u16 index, u8 connectable)
1858 return ret; 1858 return ret;
1859} 1859}
1860 1860
1861int mgmt_new_key(u16 index, struct link_key *key) 1861int mgmt_new_key(u16 index, struct link_key *key, u8 persistent)
1862{ 1862{
1863 struct mgmt_ev_new_key ev; 1863 struct mgmt_ev_new_key ev;
1864 1864
1865 memset(&ev, 0, sizeof(ev)); 1865 memset(&ev, 0, sizeof(ev));
1866 1866
1867 ev.store_hint = persistent;
1867 bacpy(&ev.key.bdaddr, &key->bdaddr); 1868 bacpy(&ev.key.bdaddr, &key->bdaddr);
1868 ev.key.type = key->type; 1869 ev.key.type = key->type;
1869 memcpy(ev.key.val, key->val, 16); 1870 memcpy(ev.key.val, key->val, 16);