diff options
author | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2020-01-15 13:02:18 -0800 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2020-01-15 22:28:51 +0100 |
commit | 1b1d29e5149990e44634b2e681de71effd463591 (patch) | |
tree | f8fe09516a40bc10686cccbdf35405b4503744bc | |
parent | f9a619db7c137b7c2dec0414d8deb8ec762ae8f9 (diff) | |
download | linux-stable-1b1d29e5149990e44634b2e681de71effd463591.tar.gz linux-stable-1b1d29e5149990e44634b2e681de71effd463591.tar.bz2 linux-stable-1b1d29e5149990e44634b2e681de71effd463591.zip |
Bluetooth: Make use of __check_timeout on hci_sched_le
This reuse __check_timeout on hci_sched_le following the same logic
used hci_sched_acl.
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r-- | net/bluetooth/hci_core.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index f0298db26dc3..1ca7508b6ca7 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -4287,15 +4287,10 @@ static void hci_sched_le(struct hci_dev *hdev) if (!hci_conn_num(hdev, LE_LINK)) return; - if (!hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) { - /* LE tx timeout must be longer than maximum - * link supervision timeout (40.9 seconds) */ - if (!hdev->le_cnt && hdev->le_pkts && - time_after(jiffies, hdev->le_last_tx + HZ * 45)) - hci_link_tx_to(hdev, LE_LINK); - } - cnt = hdev->le_pkts ? hdev->le_cnt : hdev->acl_cnt; + + __check_timeout(hdev, cnt); + tmp = cnt; while (cnt && (chan = hci_chan_sent(hdev, LE_LINK, "e))) { u32 priority = (skb_peek(&chan->data_q))->priority; |