Home
last modified time | relevance | path

Searched refs:ntp (Results 1 – 5 of 5) sorted by relevance

/linux/drivers/net/ethernet/intel/libie/
H A Dcontrolq.c98 u32 ntp = ctlq->next_to_post, ntc = ctlq->next_to_clean, num_to_post; in libie_ctlq_post_rx_buffs() local
107 num_to_post = (ntc > ntp ? 0 : ctlq->ring_len) + ntc - ntp - 1; in libie_ctlq_post_rx_buffs()
112 ctlq->descs[ntp] = (struct libie_ctlq_desc) {}; in libie_ctlq_post_rx_buffs()
114 addr = libeth_rx_alloc(&fq, ntp); in libie_ctlq_post_rx_buffs()
120 libie_ctlq_prep_rx_desc(&ctlq->descs[ntp], addr, fq.truesize); in libie_ctlq_post_rx_buffs()
122 if (unlikely(++ntp == ctlq->ring_len)) in libie_ctlq_post_rx_buffs()
123 ntp = 0; in libie_ctlq_post_rx_buffs()
127 if (likely(ctlq->next_to_post != ntp)) { in libie_ctlq_post_rx_buffs()
128 ctlq->next_to_post = ntp; in libie_ctlq_post_rx_buffs()
131 writel(ntp, ctlq->reg.tail); in libie_ctlq_post_rx_buffs()
/linux/drivers/net/ethernet/intel/i40e/
H A Di40e_txrx.c2368 u32 ntp = rx_ring->next_to_process + 1; in i40e_inc_ntp() local
2370 ntp = (ntp < rx_ring->count) ? ntp : 0; in i40e_inc_ntp()
2371 rx_ring->next_to_process = ntp; in i40e_inc_ntp()
2372 prefetch(I40E_RX_DESC(rx_ring, ntp)); in i40e_inc_ntp()
2453 u16 ntp = rx_ring->next_to_process; in i40e_clean_rx_irq() local
2469 rx_desc = I40E_RX_DESC(rx_ring, ntp); in i40e_clean_rx_irq()
2488 rx_buffer = i40e_rx_bi(rx_ring, ntp); in i40e_clean_rx_irq()
2494 if (rx_ring->next_to_clean == ntp) { in i40e_clean_rx_irq()
/linux/Documentation/power/
H A Ds2ram.rst80 correct date/time! It is therefore advisable to use a program like ntp-date
/linux/Documentation/admin-guide/
H A Drtc.rst93 don't synchronize the kernel time with an external source (via ntp or
/linux/
H A DMAINTAINERS27541 F: kernel/time/ntp*