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:
5125e9e
)
Bluetooth: Fix check for the ERTM local busy state
author
Mat Martineau
<mathewm@codeaurora.org>
Fri, 3 Jun 2011 23:21:10 +0000
(16:21 -0700)
committer
Jaikumar Ganesh
<jaikumar@google.com>
Mon, 11 Jul 2011 18:59:18 +0000
(11:59 -0700)
Local busy is encoded in a bitfield, but was not masked out correctly.
Signed-off-by: Mat Martineau <mathewm@codeaurora.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
net/bluetooth/l2cap_core.c
patch
|
blob
|
history
diff --git
a/net/bluetooth/l2cap_core.c
b/net/bluetooth/l2cap_core.c
index f67dc2a6a578b7ead614f074cfb3e9bfb6ec99da..851d0351ca3584dcda30eb9b00f57e947b73ef8e 100644
(file)
--- a/
net/bluetooth/l2cap_core.c
+++ b/
net/bluetooth/l2cap_core.c
@@
-3541,7
+3541,7
@@
static inline int l2cap_data_channel_iframe(struct l2cap_chan *chan, u16 rx_cont
goto drop;
}
- if (chan->conn_state
==
L2CAP_CONN_LOCAL_BUSY)
+ if (chan->conn_state
&
L2CAP_CONN_LOCAL_BUSY)
goto drop;
if (chan->conn_state & L2CAP_CONN_SREJ_SENT) {