Home
last modified time | relevance | path

Searched refs:nextp (Results 1 - 25 of 34) sorted by relevance

12

/kernel/linux/linux-5.10/kernel/cgroup/
H A Drstat.c118 struct cgroup **nextp; in cgroup_rstat_cpu_pop_updated() local
120 nextp = &prstatc->updated_children; in cgroup_rstat_cpu_pop_updated()
122 nrstatc = cgroup_rstat_cpu(*nextp, cpu); in cgroup_rstat_cpu_pop_updated()
123 if (*nextp == pos) in cgroup_rstat_cpu_pop_updated()
126 WARN_ON_ONCE(*nextp == parent); in cgroup_rstat_cpu_pop_updated()
127 nextp = &nrstatc->updated_next; in cgroup_rstat_cpu_pop_updated()
130 *nextp = rstatc->updated_next; in cgroup_rstat_cpu_pop_updated()
/kernel/linux/linux-6.6/kernel/cgroup/
H A Drstat.c130 struct cgroup **nextp; in cgroup_rstat_cpu_pop_updated() local
133 nextp = &prstatc->updated_children; in cgroup_rstat_cpu_pop_updated()
134 while (*nextp != pos) { in cgroup_rstat_cpu_pop_updated()
137 nrstatc = cgroup_rstat_cpu(*nextp, cpu); in cgroup_rstat_cpu_pop_updated()
138 WARN_ON_ONCE(*nextp == parent); in cgroup_rstat_cpu_pop_updated()
139 nextp = &nrstatc->updated_next; in cgroup_rstat_cpu_pop_updated()
141 *nextp = rstatc->updated_next; in cgroup_rstat_cpu_pop_updated()
/kernel/linux/linux-6.6/arch/riscv/mm/
H A Dinit.c559 pmd_t *nextp; in create_pud_mapping() local
572 nextp = pt_ops.get_pmd_virt(next_phys); in create_pud_mapping()
573 memset(nextp, 0, PAGE_SIZE); in create_pud_mapping()
576 nextp = pt_ops.get_pmd_virt(next_phys); in create_pud_mapping()
579 create_pmd_mapping(nextp, va, pa, sz, prot); in create_pud_mapping()
586 pud_t *nextp; in create_p4d_mapping() local
599 nextp = pt_ops.get_pud_virt(next_phys); in create_p4d_mapping()
600 memset(nextp, 0, PAGE_SIZE); in create_p4d_mapping()
603 nextp = pt_ops.get_pud_virt(next_phys); in create_p4d_mapping()
606 create_pud_mapping(nextp, v in create_p4d_mapping()
644 pgd_next_t *nextp; create_pgd_mapping() local
[all...]
/kernel/linux/linux-5.10/net/ipv4/
H A Dinet_fragment.c414 struct sk_buff **nextp; in inet_frag_reasm_prepare() local
470 nextp = &clone->next; in inet_frag_reasm_prepare()
472 nextp = &skb_shinfo(head)->frag_list; in inet_frag_reasm_prepare()
475 return nextp; in inet_frag_reasm_prepare()
482 struct sk_buff **nextp = (struct sk_buff **)reasm_data; in inet_frag_reasm_finish() local
523 *nextp = fp; in inet_frag_reasm_finish()
524 nextp = &fp->next; in inet_frag_reasm_finish()
540 *nextp = NULL; in inet_frag_reasm_finish()
/kernel/linux/linux-6.6/net/ipv4/
H A Dinet_fragment.c451 struct sk_buff **nextp; in inet_frag_reasm_prepare() local
507 nextp = &clone->next; in inet_frag_reasm_prepare()
509 nextp = &skb_shinfo(head)->frag_list; in inet_frag_reasm_prepare()
512 return nextp; in inet_frag_reasm_prepare()
519 struct sk_buff **nextp = reasm_data; in inet_frag_reasm_finish() local
560 *nextp = fp; in inet_frag_reasm_finish()
561 nextp = &fp->next; in inet_frag_reasm_finish()
577 *nextp = NULL; in inet_frag_reasm_finish()
/kernel/linux/linux-5.10/sound/pci/emu10k1/
H A Dmemory.c92 * in nextp
95 static int search_empty_map_area(struct snd_emu10k1 *emu, int npages, struct list_head **nextp) in search_empty_map_area() argument
109 *nextp = pos; in search_empty_map_area()
122 *nextp = pos; in search_empty_map_area()
125 *nextp = candidate; in search_empty_map_area()
258 struct list_head *p, *nextp; in snd_emu10k1_memblk_map() local
274 for (; p != &emu->mapped_order_link_head; p = nextp) { in snd_emu10k1_memblk_map()
275 nextp = p->next; in snd_emu10k1_memblk_map()
/kernel/linux/linux-6.6/sound/pci/emu10k1/
H A Dmemory.c92 * in nextp
95 static int search_empty_map_area(struct snd_emu10k1 *emu, int npages, struct list_head **nextp) in search_empty_map_area() argument
109 *nextp = pos; in search_empty_map_area()
122 *nextp = pos; in search_empty_map_area()
125 *nextp = candidate; in search_empty_map_area()
262 struct list_head *p, *nextp; in snd_emu10k1_memblk_map() local
279 for (; p != &emu->mapped_order_link_head; p = nextp) { in snd_emu10k1_memblk_map()
280 nextp = p->next; in snd_emu10k1_memblk_map()
/kernel/linux/linux-5.10/arch/riscv/mm/
H A Dinit.c405 pgd_next_t *nextp; in create_pgd_mapping() local
418 nextp = get_pgd_next_virt(next_phys); in create_pgd_mapping()
419 memset(nextp, 0, PAGE_SIZE); in create_pgd_mapping()
422 nextp = get_pgd_next_virt(next_phys); in create_pgd_mapping()
425 create_pgd_next_mapping(nextp, va, pa, sz, prot); in create_pgd_mapping()
/kernel/linux/linux-5.10/fs/fat/
H A Dfatent.c198 u8 *nextp = ent12_p[1] + 1 + (fatent->entry & 1); in fat12_ent_next() local
206 if (nextp < (u8 *)(bhs[0]->b_data + (bhs[0]->b_size - 1))) { in fat12_ent_next()
207 ent12_p[0] = nextp - 1; in fat12_ent_next()
208 ent12_p[1] = nextp; in fat12_ent_next()
215 ent12_p[0] = nextp - 1; in fat12_ent_next()
216 ent12_p[1] = nextp; in fat12_ent_next()
/kernel/linux/linux-6.6/fs/fat/
H A Dfatent.c199 u8 *nextp = ent12_p[1] + 1 + (fatent->entry & 1); in fat12_ent_next() local
207 if (nextp < (u8 *)(bhs[0]->b_data + (bhs[0]->b_size - 1))) { in fat12_ent_next()
208 ent12_p[0] = nextp - 1; in fat12_ent_next()
209 ent12_p[1] = nextp; in fat12_ent_next()
216 ent12_p[0] = nextp - 1; in fat12_ent_next()
217 ent12_p[1] = nextp; in fat12_ent_next()
/kernel/linux/linux-6.6/kernel/time/
H A Dtick-sched.c60 ktime_t delta, nextp; in tick_do_update_jiffies64() local
83 nextp = tick_next_period; in tick_do_update_jiffies64()
86 if (ktime_before(now, nextp)) in tick_do_update_jiffies64()
123 nextp = ktime_add_ns(last_jiffies_update, TICK_NSEC); in tick_do_update_jiffies64()
132 smp_store_release(&tick_next_period, nextp); in tick_do_update_jiffies64()
138 tick_next_period = nextp; in tick_do_update_jiffies64()
/kernel/linux/linux-5.10/drivers/virt/
H A Dfsl_hypervisor.c463 #define nextp(x) (((x) + 1) & (QSIZE - 1)) macro
498 if (dbq->head != nextp(dbq->tail)) { in fsl_hv_queue_doorbell()
505 dbq->tail = nextp(dbq->tail); in fsl_hv_queue_doorbell()
638 dbq->head = nextp(dbq->head); in fsl_hv_read()
/kernel/linux/linux-6.6/drivers/virt/
H A Dfsl_hypervisor.c463 #define nextp(x) (((x) + 1) & (QSIZE - 1)) macro
498 if (dbq->head != nextp(dbq->tail)) { in fsl_hv_queue_doorbell()
505 dbq->tail = nextp(dbq->tail); in fsl_hv_queue_doorbell()
638 dbq->head = nextp(dbq->head); in fsl_hv_read()
/kernel/linux/linux-5.10/arch/sparc/include/asm/
H A Dleon.h228 void leon_node_init(struct device_node *dp, struct device_node ***nextp);
H A Dleon_amba.h181 void _amba_init(struct device_node *dp, struct device_node ***nextp);
/kernel/linux/linux-6.6/arch/sparc/include/asm/
H A Dleon.h228 void leon_node_init(struct device_node *dp, struct device_node ***nextp);
H A Dleon_amba.h181 void _amba_init(struct device_node *dp, struct device_node ***nextp);
/kernel/linux/linux-5.10/drivers/media/usb/au0828/
H A Dau0828-core.c129 struct media_entity_notify *notify, *nextp; in au0828_unregister_media_device() local
135 list_for_each_entry_safe(notify, nextp, &mdev->entity_notify, list) { in au0828_unregister_media_device()
/kernel/linux/linux-6.6/drivers/media/usb/au0828/
H A Dau0828-core.c129 struct media_entity_notify *notify, *nextp; in au0828_unregister_media_device() local
135 list_for_each_entry_safe(notify, nextp, &mdev->entity_notify, list) { in au0828_unregister_media_device()
/kernel/linux/linux-6.6/fs/jfs/
H A Djfs_xtree.c205 * nextp - address of next extent (if any) for search miss
215 static int xtSearch(struct inode *ip, s64 xoff, s64 *nextp, in xtSearch() argument
343 if (nextp) in xtSearch()
344 *nextp = next; in xtSearch()
453 if (nextp) in xtSearch()
454 *nextp = next; in xtSearch()
/kernel/linux/linux-5.10/drivers/usb/host/
H A Dehci-dbg.c371 char **nextp, unsigned *sizep) in qh_lines()
379 char *next = *nextp; in qh_lines()
467 *nextp = next; in qh_lines()
370 qh_lines(struct ehci_hcd *ehci, struct ehci_qh *qh, char **nextp, unsigned *sizep) qh_lines() argument
/kernel/linux/linux-6.6/drivers/usb/host/
H A Dehci-dbg.c371 char **nextp, unsigned *sizep) in qh_lines()
379 char *next = *nextp; in qh_lines()
467 *nextp = next; in qh_lines()
370 qh_lines(struct ehci_hcd *ehci, struct ehci_qh *qh, char **nextp, unsigned *sizep) qh_lines() argument
/kernel/linux/linux-5.10/drivers/media/mc/
H A Dmc-device.c806 struct media_entity_notify *notify, *nextp; in media_device_unregister() local
827 list_for_each_entry_safe(notify, nextp, &mdev->entity_notify, list) in media_device_unregister()
/kernel/linux/linux-5.10/fs/xfs/
H A Dxfs_rtalloc.c228 xfs_rtblock_t *nextp, /* out: next block to try */ in xfs_rtallocate_extent_block()
327 * Allocation failed. Set *nextp to the next block to try. in xfs_rtallocate_extent_block()
329 *nextp = next; in xfs_rtallocate_extent_block()
221 xfs_rtallocate_extent_block( xfs_mount_t *mp, xfs_trans_t *tp, xfs_rtblock_t bbno, xfs_extlen_t minlen, xfs_extlen_t maxlen, xfs_extlen_t *len, xfs_rtblock_t *nextp, xfs_buf_t **rbpp, xfs_fsblock_t *rsb, xfs_extlen_t prod, xfs_rtblock_t *rtblock) xfs_rtallocate_extent_block() argument
/kernel/linux/linux-6.6/drivers/media/mc/
H A Dmc-device.c791 struct media_entity_notify *notify, *nextp; in media_device_unregister() local
812 list_for_each_entry_safe(notify, nextp, &mdev->entity_notify, list) in media_device_unregister()

Completed in 27 milliseconds

12