Commit 78282d2a authored by Gerrit Renker's avatar Gerrit Renker Committed by David S. Miller

[TFRC]: Move comment.

Moved up the comment "Receiver routines" above the first occurrence of
RX history routines.
Signed-off-by: default avatarGerrit Renker <gerrit@erg.abdn.ac.uk>
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c69bce20
...@@ -114,6 +114,11 @@ u32 tfrc_tx_hist_rtt(struct tfrc_tx_hist_entry *head, const u64 seqno, ...@@ -114,6 +114,11 @@ u32 tfrc_tx_hist_rtt(struct tfrc_tx_hist_entry *head, const u64 seqno,
EXPORT_SYMBOL_GPL(tfrc_tx_hist_rtt); EXPORT_SYMBOL_GPL(tfrc_tx_hist_rtt);
/*
* Receiver History Routines
*/
static struct kmem_cache *tfrc_rx_hist_slab;
/** /**
* tfrc_rx_hist_index - index to reach n-th entry after loss_start * tfrc_rx_hist_index - index to reach n-th entry after loss_start
*/ */
...@@ -131,11 +136,6 @@ static inline struct tfrc_rx_hist_entry * ...@@ -131,11 +136,6 @@ static inline struct tfrc_rx_hist_entry *
return h->ring[tfrc_rx_hist_index(h, h->loss_count)]; return h->ring[tfrc_rx_hist_index(h, h->loss_count)];
} }
/*
* Receiver History Routines
*/
static struct kmem_cache *tfrc_rx_hist_slab;
void tfrc_rx_hist_add_packet(struct tfrc_rx_hist *h, void tfrc_rx_hist_add_packet(struct tfrc_rx_hist *h,
const struct sk_buff *skb, const struct sk_buff *skb,
const u32 ndp) const u32 ndp)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment