Home
last modified time | relevance | path

Searched refs:tfrc_tx_hist_entry (Results 1 – 4 of 4) sorted by relevance

/linux-4.4.14/net/dccp/ccids/lib/
Dpacket_history.h49 struct tfrc_tx_hist_entry { struct
50 struct tfrc_tx_hist_entry *next; argument
55 static inline struct tfrc_tx_hist_entry * argument
56 tfrc_tx_hist_find_entry(struct tfrc_tx_hist_entry *head, u64 seqno) in tfrc_tx_hist_find_entry()
63 int tfrc_tx_hist_add(struct tfrc_tx_hist_entry **headp, u64 seqno);
64 void tfrc_tx_hist_purge(struct tfrc_tx_hist_entry **headp);
Dpacket_history.c49 sizeof(struct tfrc_tx_hist_entry), in tfrc_tx_packet_history_init()
62 int tfrc_tx_hist_add(struct tfrc_tx_hist_entry **headp, u64 seqno) in tfrc_tx_hist_add()
64 struct tfrc_tx_hist_entry *entry = kmem_cache_alloc(tfrc_tx_hist_slab, gfp_any()); in tfrc_tx_hist_add()
75 void tfrc_tx_hist_purge(struct tfrc_tx_hist_entry **headp) in tfrc_tx_hist_purge()
77 struct tfrc_tx_hist_entry *head = *headp; in tfrc_tx_hist_purge()
80 struct tfrc_tx_hist_entry *next = head->next; in tfrc_tx_hist_purge()
/linux-4.4.14/net/dccp/ccids/
Dccid3.h111 struct tfrc_tx_hist_entry *tx_hist;
Dccid3.c370 struct tfrc_tx_hist_entry *acked; in ccid3_hc_tx_packet_recv()