Lines Matching refs:entry
64 struct tfrc_tx_hist_entry *entry = kmem_cache_alloc(tfrc_tx_hist_slab, gfp_any()); in tfrc_tx_hist_add() local
66 if (entry == NULL) in tfrc_tx_hist_add()
68 entry->seqno = seqno; in tfrc_tx_hist_add()
69 entry->stamp = ktime_get_real(); in tfrc_tx_hist_add()
70 entry->next = *headp; in tfrc_tx_hist_add()
71 *headp = entry; in tfrc_tx_hist_add()
110 static inline void tfrc_rx_hist_entry_from_skb(struct tfrc_rx_hist_entry *entry, in tfrc_rx_hist_entry_from_skb() argument
116 entry->tfrchrx_seqno = DCCP_SKB_CB(skb)->dccpd_seq; in tfrc_rx_hist_entry_from_skb()
117 entry->tfrchrx_ccval = dh->dccph_ccval; in tfrc_rx_hist_entry_from_skb()
118 entry->tfrchrx_type = dh->dccph_type; in tfrc_rx_hist_entry_from_skb()
119 entry->tfrchrx_ndp = ndp; in tfrc_rx_hist_entry_from_skb()
120 entry->tfrchrx_tstamp = ktime_get_real(); in tfrc_rx_hist_entry_from_skb()
127 struct tfrc_rx_hist_entry *entry = tfrc_rx_hist_last_rcv(h); in tfrc_rx_hist_add_packet() local
129 tfrc_rx_hist_entry_from_skb(entry, skb, ndp); in tfrc_rx_hist_add_packet()