From: Sudha Bheemanna Date: Thu, 8 Sep 2016 11:31:39 +0000 (+0530) Subject: Bluetooth: Cancel the Sniff timer X-Git-Tag: accepted/tizen/unified/20240422.153132~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F86%2F306586%2F1;p=platform%2Fkernel%2Flinux-rpi.git Bluetooth: Cancel the Sniff timer This patch adds code to cancel the sniff timer. Change-Id: Ic0e233bf43084e5228866d70de7dcb96a2df1c54 Signed-off-by: Sudha Bheemanna Signed-off-by: Amit Purwar Signed-off-by: Wootak Jung Signed-off-by: Jaehoon Chung --- diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index eac7948..a92c0cc 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c @@ -2594,9 +2594,18 @@ void hci_conn_enter_active_mode(struct hci_conn *conn, __u8 force_active) } timer: +#ifdef TIZEN_BT + if (hdev->idle_timeout > 0) { + /* Sniff timer cancel */ + cancel_delayed_work(&conn->idle_work); + queue_delayed_work(hdev->workqueue, &conn->idle_work, + msecs_to_jiffies(hdev->idle_timeout)); + } +#else if (hdev->idle_timeout > 0) queue_delayed_work(hdev->workqueue, &conn->idle_work, msecs_to_jiffies(hdev->idle_timeout)); +#endif } /* Drop all connection on the device */