aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2011-08-17 09:23:00 -0400
committerGustavo F. Padovan <padovan@profusion.mobi>2011-09-21 11:58:10 -0400
commit52087a792c1513b85de674a4fc67fb92855474c3 (patch)
tree4b7bf7510a44378a5cecfcb66d22364624c2dd56 /net
parentda3ba88a9996cd64c6768bed5727e02da81e2c8d (diff)
Bluetooth: make use of connection number to optimize the scheduler
This checks if there is any existing connection according to its type before start iterating in the list and immediately stop iterating when reaching the number of connections. Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net')
-rw-r--r--net/bluetooth/hci_core.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index 56943add45cc..1d2068322728 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -2074,6 +2074,9 @@ static inline struct hci_conn *hci_low_sent(struct hci_dev *hdev, __u8 type, int
2074 min = c->sent; 2074 min = c->sent;
2075 conn = c; 2075 conn = c;
2076 } 2076 }
2077
2078 if (hci_conn_num(hdev, type) == num)
2079 break;
2077 } 2080 }
2078 2081
2079 if (conn) { 2082 if (conn) {
@@ -2131,6 +2134,9 @@ static inline void hci_sched_acl(struct hci_dev *hdev)
2131 2134
2132 BT_DBG("%s", hdev->name); 2135 BT_DBG("%s", hdev->name);
2133 2136
2137 if (!hci_conn_num(hdev, ACL_LINK))
2138 return;
2139
2134 if (!test_bit(HCI_RAW, &hdev->flags)) { 2140 if (!test_bit(HCI_RAW, &hdev->flags)) {
2135 /* ACL tx timeout must be longer than maximum 2141 /* ACL tx timeout must be longer than maximum
2136 * link supervision timeout (40.9 seconds) */ 2142 * link supervision timeout (40.9 seconds) */
@@ -2162,6 +2168,9 @@ static inline void hci_sched_sco(struct hci_dev *hdev)
2162 2168
2163 BT_DBG("%s", hdev->name); 2169 BT_DBG("%s", hdev->name);
2164 2170
2171 if (!hci_conn_num(hdev, SCO_LINK))
2172 return;
2173
2165 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, SCO_LINK, &quote))) { 2174 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, SCO_LINK, &quote))) {
2166 while (quote-- && (skb = skb_dequeue(&conn->data_q))) { 2175 while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
2167 BT_DBG("skb %p len %d", skb, skb->len); 2176 BT_DBG("skb %p len %d", skb, skb->len);
@@ -2182,6 +2191,9 @@ static inline void hci_sched_esco(struct hci_dev *hdev)
2182 2191
2183 BT_DBG("%s", hdev->name); 2192 BT_DBG("%s", hdev->name);
2184 2193
2194 if (!hci_conn_num(hdev, ESCO_LINK))
2195 return;
2196
2185 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, ESCO_LINK, &quote))) { 2197 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, ESCO_LINK, &quote))) {
2186 while (quote-- && (skb = skb_dequeue(&conn->data_q))) { 2198 while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
2187 BT_DBG("skb %p len %d", skb, skb->len); 2199 BT_DBG("skb %p len %d", skb, skb->len);
@@ -2202,6 +2214,9 @@ static inline void hci_sched_le(struct hci_dev *hdev)
2202 2214
2203 BT_DBG("%s", hdev->name); 2215 BT_DBG("%s", hdev->name);
2204 2216
2217 if (!hci_conn_num(hdev, LE_LINK))
2218 return;
2219
2205 if (!test_bit(HCI_RAW, &hdev->flags)) { 2220 if (!test_bit(HCI_RAW, &hdev->flags)) {
2206 /* LE tx timeout must be longer than maximum 2221 /* LE tx timeout must be longer than maximum
2207 * link supervision timeout (40.9 seconds) */ 2222 * link supervision timeout (40.9 seconds) */