Home
last modified time | relevance | path

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

/linux-6.15/drivers/net/ethernet/intel/idpf/
H A Didpf_controlq.c427 u16 ntp = cq->next_to_post; in idpf_ctlq_post_rx_buffs() local
429 u16 tbp = ntp + 1; in idpf_ctlq_post_rx_buffs()
451 if (cq->bi.rx_buff[ntp]) in idpf_ctlq_post_rx_buffs()
459 tbp = ntp + 1; in idpf_ctlq_post_rx_buffs()
467 cq->bi.rx_buff[ntp] = in idpf_ctlq_post_rx_buffs()
505 ntp++; in idpf_ctlq_post_rx_buffs()
506 if (ntp == cq->ring_size) in idpf_ctlq_post_rx_buffs()
507 ntp = 0; in idpf_ctlq_post_rx_buffs()
512 if (cq->next_to_post != ntp) { in idpf_ctlq_post_rx_buffs()
513 if (ntp) in idpf_ctlq_post_rx_buffs()
[all …]
/linux-6.15/fs/xfs/
H A Dxfs_trans.c94 struct xfs_trans *ntp; in xfs_trans_dup() local
103 ntp->t_mountp = tp->t_mountp; in xfs_trans_dup()
104 INIT_LIST_HEAD(&ntp->t_items); in xfs_trans_dup()
105 INIT_LIST_HEAD(&ntp->t_busy); in xfs_trans_dup()
106 INIT_LIST_HEAD(&ntp->t_dfops); in xfs_trans_dup()
107 ntp->t_highest_agno = NULLAGNUMBER; in xfs_trans_dup()
112 ntp->t_flags = XFS_TRANS_PERM_LOG_RES | in xfs_trans_dup()
127 xfs_trans_switch_context(tp, ntp); in xfs_trans_dup()
130 xfs_defer_move(ntp, tp); in xfs_trans_dup()
132 xfs_trans_dup_dqinfo(tp, ntp); in xfs_trans_dup()
[all …]
H A Dxfs_trans_dquot.c77 struct xfs_trans *ntp) in xfs_trans_dup_dqinfo() argument
87 xfs_trans_alloc_dqinfo(ntp); in xfs_trans_dup_dqinfo()
91 nqa = ntp->t_dqinfo->dqs[j]; in xfs_trans_dup_dqinfo()
/linux-6.15/kernel/time/
H A DMakefile9 obj-y += timekeeping.o ntp.o clocksource.o jiffies.o timer_list.o
/linux-6.15/drivers/net/ethernet/intel/i40e/
H A Di40e_txrx.c2370 u32 ntp = rx_ring->next_to_process + 1; in i40e_inc_ntp() local
2372 ntp = (ntp < rx_ring->count) ? ntp : 0; in i40e_inc_ntp()
2373 rx_ring->next_to_process = ntp; in i40e_inc_ntp()
2374 prefetch(I40E_RX_DESC(rx_ring, ntp)); in i40e_inc_ntp()
2455 u16 ntp = rx_ring->next_to_process; in i40e_clean_rx_irq() local
2471 rx_desc = I40E_RX_DESC(rx_ring, ntp); in i40e_clean_rx_irq()
2490 rx_buffer = i40e_rx_bi(rx_ring, ntp); in i40e_clean_rx_irq()
2496 if (rx_ring->next_to_clean == ntp) { in i40e_clean_rx_irq()
/linux-6.15/Documentation/power/
H A Ds2ram.rst80 correct date/time! It is therefore advisable to use a program like ntp-date
/linux-6.15/kernel/
H A Dauditsc.c1326 const struct audit_ntp_data *ntp = &context->time.ntp_data; in audit_log_time() local
1340 if (ntp->vals[type].newval != ntp->vals[type].oldval) { in audit_log_time()
1350 ntp->vals[type].oldval, in audit_log_time()
1351 ntp->vals[type].newval); in audit_log_time()
/linux-6.15/Documentation/admin-guide/
H A Drtc.rst93 don't synchronize the kernel time with an external source (via ntp or
/linux-6.15/Documentation/userspace-api/ioctl/
H A Dioctl-number.rst106 … <ftp://ftp.de.kernel.org/pub/linux/daemons/ntp/PPS/>
/linux-6.15/Documentation/filesystems/xfs/
H A Dxfs-delayed-logging-design.rst101 ntp = xfs_trans_dup(tp);
103 xfs_trans_reserve(ntp);
/linux-6.15/
H A DMAINTAINERS24567 F: kernel/time/ntp*