aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/dccp/ccids/lib/packet_history.c19
-rw-r--r--net/dccp/ccids/lib/packet_history.h2
2 files changed, 21 insertions, 0 deletions
diff --git a/net/dccp/ccids/lib/packet_history.c b/net/dccp/ccids/lib/packet_history.c
index 7b6b03e9271a..420c60f8604d 100644
--- a/net/dccp/ccids/lib/packet_history.c
+++ b/net/dccp/ccids/lib/packet_history.c
@@ -365,6 +365,25 @@ struct dccp_tx_hist_entry *
365 365
366EXPORT_SYMBOL_GPL(dccp_tx_hist_find_entry); 366EXPORT_SYMBOL_GPL(dccp_tx_hist_find_entry);
367 367
368int dccp_rx_hist_find_entry(const struct list_head *list, const u64 seq,
369 u8 *ccval)
370{
371 struct dccp_rx_hist_entry *packet = NULL, *entry;
372
373 list_for_each_entry(entry, list, dccphrx_node)
374 if (entry->dccphrx_seqno == seq) {
375 packet = entry;
376 break;
377 }
378
379 if (packet)
380 *ccval = packet->dccphrx_ccval;
381
382 return packet != NULL;
383}
384
385EXPORT_SYMBOL_GPL(dccp_rx_hist_find_entry);
386
368void dccp_tx_hist_purge_older(struct dccp_tx_hist *hist, 387void dccp_tx_hist_purge_older(struct dccp_tx_hist *hist,
369 struct list_head *list, 388 struct list_head *list,
370 struct dccp_tx_hist_entry *packet) 389 struct dccp_tx_hist_entry *packet)
diff --git a/net/dccp/ccids/lib/packet_history.h b/net/dccp/ccids/lib/packet_history.h
index 27c43092636c..aea9c5d70910 100644
--- a/net/dccp/ccids/lib/packet_history.h
+++ b/net/dccp/ccids/lib/packet_history.h
@@ -106,6 +106,8 @@ static inline void dccp_tx_hist_entry_delete(struct dccp_tx_hist *hist,
106extern struct dccp_tx_hist_entry * 106extern struct dccp_tx_hist_entry *
107 dccp_tx_hist_find_entry(const struct list_head *list, 107 dccp_tx_hist_find_entry(const struct list_head *list,
108 const u64 seq); 108 const u64 seq);
109extern int dccp_rx_hist_find_entry(const struct list_head *list, const u64 seq,
110 u8 *ccval);
109 111
110static inline void dccp_tx_hist_add_entry(struct list_head *list, 112static inline void dccp_tx_hist_add_entry(struct list_head *list,
111 struct dccp_tx_hist_entry *entry) 113 struct dccp_tx_hist_entry *entry)