Symbol: pte_hole
arch/loongarch/mm/pageattr.c
103
.pte_hole = pageattr_pte_hole,
arch/riscv/mm/pageattr.c
91
.pte_hole = pageattr_pte_hole,
arch/s390/kvm/dat.c
508
if (pte_hole(**ptepp) && !ign_holes)
arch/s390/kvm/dat.c
519
if (pte_hole(READ_ONCE(table->ptes[idx]))) {
fs/proc/task_mmu.c
1011
if (walk->ops->pte_hole) {
fs/proc/task_mmu.c
1279
.pte_hole = smaps_pte_hole,
fs/proc/task_mmu.c
2181
.pte_hole = pagemap_pte_hole,
fs/proc/task_mmu.c
2920
.pte_hole = pagemap_scan_pte_hole,
include/linux/pagewalk.h
81
int (*pte_hole)(unsigned long addr, unsigned long next,
mm/hmm.c
634
.pte_hole = hmm_vma_walk_hole,
mm/migrate_device.c
496
.pte_hole = migrate_vma_collect_hole,
mm/mincore.c
237
.pte_hole = mincore_unmapped_range,
mm/pagewalk.c
134
else if (ops->pte_hole)
mm/pagewalk.c
135
err = ops->pte_hole(addr, next, depth, walk);
mm/pagewalk.c
204
else if (ops->pte_hole)
mm/pagewalk.c
205
err = ops->pte_hole(addr, next, depth, walk);
mm/pagewalk.c
268
else if (ops->pte_hole)
mm/pagewalk.c
269
err = ops->pte_hole(addr, next, depth, walk);
mm/pagewalk.c
309
else if (ops->pte_hole)
mm/pagewalk.c
310
err = ops->pte_hole(addr, next, 0, walk);
mm/pagewalk.c
357
else if (ops->pte_hole)
mm/pagewalk.c
358
err = ops->pte_hole(addr, next, -1, walk);
mm/pagewalk.c
401
if (ops->pte_hole)
mm/pagewalk.c
402
err = ops->pte_hole(start, end, -1, walk);
mm/pagewalk.c
501
if (ops->pte_hole)
mm/pagewalk.c
502
err = ops->pte_hole(start, next, -1, &walk);
mm/pagewalk.c
506
if (ops->pte_hole)
mm/pagewalk.c
507
err = ops->pte_hole(start, next, -1, &walk);
mm/ptdump.c
172
.pte_hole = ptdump_hole,