Lines Matching refs:skb_cb
85 struct cpts_skb_cb_data *skb_cb; in cpts_purge_txq() local
90 skb_cb = (struct cpts_skb_cb_data *)skb->cb; in cpts_purge_txq()
91 if (time_after(jiffies, skb_cb->tmo)) { in cpts_purge_txq()
335 struct cpts_skb_cb_data *skb_cb = in cpts_match_tx_ts() local
338 if (mtype_seqid == skb_cb->skb_mtype_seqid) { in cpts_match_tx_ts()
350 if (time_after(jiffies, skb_cb->tmo)) { in cpts_match_tx_ts()
495 struct cpts_skb_cb_data *skb_cb = (struct cpts_skb_cb_data *)skb->cb; in cpts_rx_timestamp() local
505 ret = cpts_skb_get_mtype_seqid(skb, &skb_cb->skb_mtype_seqid); in cpts_rx_timestamp()
509 skb_cb->skb_mtype_seqid |= (CPTS_EV_RX << EVENT_TYPE_SHIFT); in cpts_rx_timestamp()
512 __func__, skb_cb->skb_mtype_seqid); in cpts_rx_timestamp()
514 ns = cpts_find_ts(cpts, skb, CPTS_EV_RX, skb_cb->skb_mtype_seqid); in cpts_rx_timestamp()
525 struct cpts_skb_cb_data *skb_cb = (struct cpts_skb_cb_data *)skb->cb; in cpts_tx_timestamp() local
531 ret = cpts_skb_get_mtype_seqid(skb, &skb_cb->skb_mtype_seqid); in cpts_tx_timestamp()
535 skb_cb->skb_mtype_seqid |= (CPTS_EV_TX << EVENT_TYPE_SHIFT); in cpts_tx_timestamp()
538 __func__, skb_cb->skb_mtype_seqid); in cpts_tx_timestamp()
543 skb_cb->tmo = jiffies + msecs_to_jiffies(CPTS_SKB_RX_TX_TMO); in cpts_tx_timestamp()