diff options
author | Samuel Ortiz <sameo@linux.intel.com> | 2012-12-07 15:55:19 +0100 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2013-01-10 00:44:31 +0100 |
commit | 2593c2c6ec236c6aedbb8182d103185ab6580285 (patch) | |
tree | c5377cf7da2044aa51bbe8c09dc9e8b6df292c95 /net/nfc/llcp/llcp.h | |
parent | cb950d9304b2965bef07e26d6c0eb34a0b1f75fe (diff) | |
download | talos-op-linux-2593c2c6ec236c6aedbb8182d103185ab6580285.tar.gz talos-op-linux-2593c2c6ec236c6aedbb8182d103185ab6580285.zip |
NFC: llcp: Remove the tx backlog queue
Not only it was improperly use to queue backlogged RX skbuffs, but it was
also not processed at all.
If the socket receive queue is full we simply drop the incoming packets.
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'net/nfc/llcp/llcp.h')
-rw-r--r-- | net/nfc/llcp/llcp.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/nfc/llcp/llcp.h b/net/nfc/llcp/llcp.h index 0d62366f8cc3..0eae5c509504 100644 --- a/net/nfc/llcp/llcp.h +++ b/net/nfc/llcp/llcp.h @@ -121,7 +121,6 @@ struct nfc_llcp_sock { struct sk_buff_head tx_queue; struct sk_buff_head tx_pending_queue; - struct sk_buff_head tx_backlog_queue; struct list_head accept_queue; struct sock *parent; |