/Linux-v5.15/kernel/cgroup/ |
D | rstat.c | 123 struct cgroup **nextp; in cgroup_rstat_cpu_pop_updated() local 126 nextp = &prstatc->updated_children; in cgroup_rstat_cpu_pop_updated() 130 nrstatc = cgroup_rstat_cpu(*nextp, cpu); in cgroup_rstat_cpu_pop_updated() 131 if (*nextp == pos) in cgroup_rstat_cpu_pop_updated() 133 WARN_ON_ONCE(*nextp == parent); in cgroup_rstat_cpu_pop_updated() 134 nextp = &nrstatc->updated_next; in cgroup_rstat_cpu_pop_updated() 136 *nextp = rstatc->updated_next; in cgroup_rstat_cpu_pop_updated()
|
/Linux-v5.15/net/ipv4/ |
D | inet_fragment.c | 443 struct sk_buff **nextp; in inet_frag_reasm_prepare() local 499 nextp = &clone->next; in inet_frag_reasm_prepare() 501 nextp = &skb_shinfo(head)->frag_list; in inet_frag_reasm_prepare() 504 return nextp; in inet_frag_reasm_prepare() 511 struct sk_buff **nextp = (struct sk_buff **)reasm_data; in inet_frag_reasm_finish() local 552 *nextp = fp; in inet_frag_reasm_finish() 553 nextp = &fp->next; in inet_frag_reasm_finish() 569 *nextp = NULL; in inet_frag_reasm_finish()
|
/Linux-v5.15/sound/pci/emu10k1/ |
D | memory.c | 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()
|
/Linux-v5.15/kernel/time/ |
D | tick-sched.c | 60 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()
|
/Linux-v5.15/arch/riscv/mm/ |
D | init.c | 421 pgd_next_t *nextp; in create_pgd_mapping() local 434 nextp = get_pgd_next_virt(next_phys); in create_pgd_mapping() 435 memset(nextp, 0, PAGE_SIZE); in create_pgd_mapping() 438 nextp = get_pgd_next_virt(next_phys); in create_pgd_mapping() 441 create_pgd_next_mapping(nextp, va, pa, sz, prot); in create_pgd_mapping()
|
/Linux-v5.15/fs/fat/ |
D | fatent.c | 198 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()
|
/Linux-v5.15/drivers/virt/ |
D | fsl_hypervisor.c | 463 #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()
|
/Linux-v5.15/arch/sparc/include/asm/ |
D | leon.h | 228 void leon_node_init(struct device_node *dp, struct device_node ***nextp);
|
D | leon_amba.h | 181 void _amba_init(struct device_node *dp, struct device_node ***nextp);
|
/Linux-v5.15/drivers/media/usb/au0828/ |
D | au0828-core.c | 129 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()
|
/Linux-v5.15/drivers/usb/host/ |
D | ehci-dbg.c | 371 char **nextp, unsigned *sizep) in qh_lines() argument 379 char *next = *nextp; in qh_lines() 467 *nextp = next; in qh_lines()
|
D | fotg210-hcd.c | 355 char **nextp, unsigned *sizep) in qh_lines() argument 362 char *next = *nextp; in qh_lines() 445 *nextp = next; in qh_lines()
|
/Linux-v5.15/drivers/media/mc/ |
D | mc-device.c | 806 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()
|
/Linux-v5.15/fs/xfs/ |
D | xfs_rtalloc.c | 228 xfs_rtblock_t *nextp, /* out: next block to try */ in xfs_rtallocate_extent_block() argument 329 *nextp = next; in xfs_rtallocate_extent_block()
|
/Linux-v5.15/fs/jfs/ |
D | jfs_xtree.c | 226 static int xtSearch(struct inode *ip, s64 xoff, s64 *nextp, in xtSearch() argument 354 if (nextp) in xtSearch() 355 *nextp = next; in xtSearch() 464 if (nextp) in xtSearch() 465 *nextp = next; in xtSearch()
|
/Linux-v5.15/kernel/ |
D | workqueue.c | 1075 struct work_struct **nextp) in move_linked_works() argument 1094 if (nextp) in move_linked_works() 1095 *nextp = n; in move_linked_works()
|
/Linux-v5.15/fs/xfs/libxfs/ |
D | xfs_bmap.c | 334 xfs_bmbt_rec_t *nextp; /* pointer to next extent */ in xfs_bmap_check_leaf_extents() local 431 nextp = XFS_BMBT_REC_ADDR(mp, block, j + 1); in xfs_bmap_check_leaf_extents() 434 xfs_bmbt_disk_get_startoff(nextp)); in xfs_bmap_check_leaf_extents() 435 ep = nextp; in xfs_bmap_check_leaf_extents()
|
/Linux-v5.15/drivers/net/ethernet/broadcom/bnxt/ |
D | bnxt.c | 10999 u8 **nextp) in bnxt_exthdr_check() argument 11033 if (nextp) { in bnxt_exthdr_check() 11036 *nextp = nexthdr; in bnxt_exthdr_check() 11039 *nextp = NULL; in bnxt_exthdr_check()
|