projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f9c3123
)
Bluetooth: Use list_for_each_entry in hci_conn_hash_flush()
author
Gustavo F. Padovan
<padovan@profusion.mobi>
Thu, 15 Dec 2011 00:52:31 +0000
(22:52 -0200)
committer
Gustavo F. Padovan
<padovan@profusion.mobi>
Fri, 16 Dec 2011 20:16:15 +0000
(18:16 -0200)
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
net/bluetooth/hci_conn.c
patch
|
blob
|
history
diff --git
a/net/bluetooth/hci_conn.c
b/net/bluetooth/hci_conn.c
index 1a076941829b5ef8bf3714bb93a9d51d17915df2..dfe807fb7e79f5b297def298bf3eeddd053ad6d4 100644
(file)
--- a/
net/bluetooth/hci_conn.c
+++ b/
net/bluetooth/hci_conn.c
@@
-807,17
+807,11
@@
void hci_conn_enter_sniff_mode(struct hci_conn *conn)
void hci_conn_hash_flush(struct hci_dev *hdev)
{
struct hci_conn_hash *h = &hdev->conn_hash;
- struct
list_head *p
;
+ struct
hci_conn *c
;
BT_DBG("hdev %s", hdev->name);
- p = h->list.next;
- while (p != &h->list) {
- struct hci_conn *c;
-
- c = list_entry(p, struct hci_conn, list);
- p = p->next;
-
+ list_for_each_entry(c, &h->list, list) {
c->state = BT_CLOSED;
hci_proto_disconn_cfm(c, HCI_ERROR_LOCAL_HOST_TERM);