projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dbd4fca
)
NFC: Queue I frame fragments to the LLCP sockets queue tail
author
Samuel Ortiz
<sameo@linux.intel.com>
Thu, 10 May 2012 17:45:52 +0000
(19:45 +0200)
committer
John W. Linville
<linville@tuxdriver.com>
Wed, 16 May 2012 17:08:14 +0000
(13:08 -0400)
After testing our stack with large SNEP messages, we realized the fragments
were arriving in reversed order.
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
net/nfc/llcp/commands.c
patch
|
blob
|
history
diff --git
a/net/nfc/llcp/commands.c
b/net/nfc/llcp/commands.c
index c4c100dc52ee1cae1689f25b6155e27e2b255004..bf8ae4f0b90c933d9dc3dbda70416498df2e97fa 100644
(file)
--- a/
net/nfc/llcp/commands.c
+++ b/
net/nfc/llcp/commands.c
@@
-488,7
+488,7
@@
int nfc_llcp_send_i_frame(struct nfc_llcp_sock *sock,
memcpy(skb_put(pdu, frag_len), msg_ptr, frag_len);
- skb_queue_
head
(&sock->tx_queue, pdu);
+ skb_queue_
tail
(&sock->tx_queue, pdu);
lock_sock(sk);