diff options
author | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2023-03-09 03:16:31 +0300 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2023-04-24 07:48:44 +0300 |
commit | b8b23001b8025a61f0979578884a74faa825023e (patch) | |
tree | 6943849a0a56ba4b9fbcc898e0a5f3e38b215723 /include/net/bluetooth | |
parent | 9f5ae8fcae1227e9bae3d973fcbef8319a1b25c7 (diff) | |
download | linux-b8b23001b8025a61f0979578884a74faa825023e.tar.xz |
Bluetooth: L2CAP: Delay identity address updates
This delays the identity address updates to give time for userspace to
process the new address otherwise there is a risk that userspace
creates a duplicated device if the MGMT event is delayed for some
reason.
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Diffstat (limited to 'include/net/bluetooth')
-rw-r--r-- | include/net/bluetooth/l2cap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h index 2f766e3437ce..cf393e72d6ed 100644 --- a/include/net/bluetooth/l2cap.h +++ b/include/net/bluetooth/l2cap.h @@ -694,7 +694,7 @@ struct l2cap_conn { struct sk_buff_head pending_rx; struct work_struct pending_rx_work; - struct work_struct id_addr_update_work; + struct delayed_work id_addr_timer; __u8 disc_reason; |