aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/net/bluetooth/hci_core.h1
-rw-r--r--net/bluetooth/hci_conn.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
index 9fe8e2dec870..00abc5246cbf 100644
--- a/include/net/bluetooth/hci_core.h
+++ b/include/net/bluetooth/hci_core.h
@@ -355,6 +355,7 @@ struct hci_chan {
355 struct hci_conn *conn; 355 struct hci_conn *conn;
356 struct sk_buff_head data_q; 356 struct sk_buff_head data_q;
357 unsigned int sent; 357 unsigned int sent;
358 __u8 state;
358}; 359};
359 360
360extern struct list_head hci_dev_list; 361extern struct list_head hci_dev_list;
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c
index fe646211c61f..6dcf4523df3c 100644
--- a/net/bluetooth/hci_conn.c
+++ b/net/bluetooth/hci_conn.c
@@ -959,6 +959,7 @@ struct hci_chan *hci_chan_create(struct hci_conn *conn)
959 959
960 chan->conn = conn; 960 chan->conn = conn;
961 skb_queue_head_init(&chan->data_q); 961 skb_queue_head_init(&chan->data_q);
962 chan->state = BT_CONNECTED;
962 963
963 list_add_rcu(&chan->list, &conn->chan_list); 964 list_add_rcu(&chan->list, &conn->chan_list);
964 965