From: Vinicius Costa Gomes Date: Mon, 20 Jun 2011 21:53:18 +0000 (-0300) Subject: Bluetooth: Fix not setting the chan state X-Git-Tag: firefly_0821_release~3680^2~4429^2~12^2~42^2~389^2 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=43f3dc41571c47a1fbded9aca1cf0a737967b005;p=firefly-linux-kernel-4.4.55.git Bluetooth: Fix not setting the chan state When the connection is ready we should set the connection to CONNECTED so userspace can use it. Signed-off-by: Vinicius Costa Gomes Signed-off-by: Gustavo F. Padovan --- diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index ba0b2f47bab8..9ec9c8c5eb5e 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -895,7 +895,7 @@ static void l2cap_chan_ready(struct sock *sk) chan->conf_state = 0; __clear_chan_timer(chan); - sk->sk_state = BT_CONNECTED; + l2cap_state_change(chan, BT_CONNECTED); sk->sk_state_change(sk); if (parent)