aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/link.h
diff options
context:
space:
mode:
authorYing Xue <ying.xue@windriver.com>2014-11-26 11:41:47 +0800
committerDavid S. Miller <davem@davemloft.net>2014-11-26 12:30:16 -0500
commit7b6f087f98107617e0535a6ed378c561f1ae84d7 (patch)
tree19f87228de36f10323966cb52aeaddb28d914d9e /net/tipc/link.h
parenttipc: remove protocol message queue (diff)
downloadlinux-dev-7b6f087f98107617e0535a6ed378c561f1ae84d7.tar.xz
linux-dev-7b6f087f98107617e0535a6ed378c561f1ae84d7.zip
tipc: remove retransmission queue
TIPC retransmission queue is intended to record which messages should be retransmitted when bearer is not congested. However, as the retransmission queue becomes useless with the removal of bearer congestion mechanism, it should be removed. Signed-off-by: Ying Xue <ying.xue@windriver.com> Reviewed-by: Jon Maloy <jon.maloy@ericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/tipc/link.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/net/tipc/link.h b/net/tipc/link.h
index fb3f99b6e928..cc816aacb16e 100644
--- a/net/tipc/link.h
+++ b/net/tipc/link.h
@@ -130,8 +130,6 @@ struct tipc_stats {
* @oldest_deferred_in: ptr to first inbound message in queue
* @newest_deferred_in: ptr to last inbound message in queue
* @unacked_window: # of inbound messages rx'd without ack'ing back to peer
- * @retransm_queue_size: number of messages to retransmit
- * @retransm_queue_head: sequence number of first message to retransmit
* @next_out: ptr to first unsent outbound message in queue
* @waiting_sks: linked list of sockets waiting for link congestion to abate
* @long_msg_seq_no: next identifier to use for outbound fragmented messages
@@ -190,8 +188,6 @@ struct tipc_link {
u32 unacked_window;
/* Congestion handling */
- u32 retransm_queue_size;
- u32 retransm_queue_head;
struct sk_buff *next_out;
struct sk_buff_head waiting_sks;