Skip to content

Commit

Permalink
Bluetooth: Use list_for_each_entry in hci_conn_hash_flush()
Browse files Browse the repository at this point in the history
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
  • Loading branch information
Gustavo F. Padovan committed Dec 16, 2011
1 parent f9c3123 commit 3e9c40a
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions net/bluetooth/hci_conn.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3e9c40a

Please sign in to comment.