Symbol: IOMMU_PGF_WAITOK
sys/arm64/iommu/iommu.c
415
cansleep ? IOMMU_PGF_WAITOK : 0);
sys/dev/iommu/busdma_iommu.c
1065
entry = iommu_gas_alloc_entry(domain, waitok ? 0 : IOMMU_PGF_WAITOK);
sys/dev/iommu/iommu_gas.c
247
begin = iommu_gas_alloc_entry(domain, IOMMU_PGF_WAITOK);
sys/dev/iommu/iommu_gas.c
248
end = iommu_gas_alloc_entry(domain, IOMMU_PGF_WAITOK);
sys/dev/iommu/iommu_gas.c
758
*r1 = iommu_gas_alloc_entry(domain, IOMMU_PGF_WAITOK);
sys/dev/iommu/iommu_gas.c
759
*r2 = iommu_gas_alloc_entry(domain, IOMMU_PGF_WAITOK);
sys/dev/iommu/iommu_gas.c
815
(flags & IOMMU_MF_CANWAIT) != 0 ? IOMMU_PGF_WAITOK : 0);
sys/dev/iommu/iommu_gas.c
838
((flags & IOMMU_MF_CANWAIT) != 0 ? IOMMU_PGF_WAITOK : 0));
sys/dev/iommu/iommu_gas.c
885
((flags & IOMMU_MF_CANWAIT) != 0 ? IOMMU_PGF_WAITOK : 0));
sys/dev/iommu/iommu_gas.c
920
entry = iommu_gas_alloc_entry(domain, IOMMU_PGF_WAITOK);
sys/dev/iommu/iommu_gas.c
94
KASSERT((flags & ~(IOMMU_PGF_WAITOK)) == 0,
sys/dev/iommu/iommu_gas.c
950
IOMMU_PGF_WAITOK);
sys/dev/iommu/iommu_gas.c
97
res = uma_zalloc(iommu_map_entry_zone, ((flags & IOMMU_PGF_WAITOK) !=
sys/dev/iommu/iommu_gas.c
994
domain->ops->unmap(domain, entry, IOMMU_PGF_WAITOK);
sys/x86/iommu/amd_ctx.c
132
cansleep ? IOMMU_PGF_WAITOK : 0);
sys/x86/iommu/amd_idpgtbl.c
214
KASSERT((flags & IOMMU_PGF_WAITOK) == 0,
sys/x86/iommu/amd_idpgtbl.c
273
KASSERT((flags & ~IOMMU_PGF_WAITOK) == 0, ("invalid flags %x", flags));
sys/x86/iommu/amd_idpgtbl.c
285
(flags & IOMMU_PGF_WAITOK) != 0);
sys/x86/iommu/amd_idpgtbl.c
358
KASSERT((flags & ~IOMMU_PGF_WAITOK) == 0, ("invalid flags %x", flags));
sys/x86/iommu/amd_idpgtbl.c
92
m = iommu_pgalloc(domain->pgtbl_obj, 0, IOMMU_PGF_WAITOK |
sys/x86/iommu/intel_ctx.c
102
IOMMU_PGF_WAITOK);
sys/x86/iommu/intel_ctx.c
121
IOMMU_PGF_NOALLOC | IOMMU_PGF_WAITOK, sfp);
sys/x86/iommu/intel_ctx.c
888
cansleep ? IOMMU_PGF_WAITOK : 0);
sys/x86/iommu/intel_drv.c
469
iommu_pgalloc(unit->ctx_obj, 0, IOMMU_PGF_WAITOK | IOMMU_PGF_ZERO);
sys/x86/iommu/intel_drv.c
932
IOMMU_PGF_WAITOK);
sys/x86/iommu/intel_idpgtbl.c
126
IOMMU_PGF_WAITOK | IOMMU_PGF_ZERO);
sys/x86/iommu/intel_idpgtbl.c
134
pte = iommu_map_pgtbl(tbl->pgtbl_obj, idx, IOMMU_PGF_WAITOK, &sf);
sys/x86/iommu/intel_idpgtbl.c
453
KASSERT((flags & IOMMU_PGF_WAITOK) == 0,
sys/x86/iommu/intel_idpgtbl.c
526
KASSERT((flags & ~IOMMU_PGF_WAITOK) == 0, ("invalid flags %x", flags));
sys/x86/iommu/intel_idpgtbl.c
624
KASSERT((flags & ~IOMMU_PGF_WAITOK) == 0, ("invalid flags %x", flags));
sys/x86/iommu/intel_idpgtbl.c
698
m = iommu_pgalloc(domain->pgtbl_obj, 0, IOMMU_PGF_WAITOK |
sys/x86/iommu/iommu_utils.c
106
if ((flags & IOMMU_PGF_WAITOK) == 0)
sys/x86/iommu/iommu_utils.c
155
if ((flags & IOMMU_PGF_WAITOK) != 0)
sys/x86/iommu/iommu_utils.c
158
*sf = sf_buf_alloc(m, SFB_CPUPRIVATE | ((flags & IOMMU_PGF_WAITOK)
sys/x86/iommu/iommu_utils.c
171
if ((flags & (IOMMU_PGF_WAITOK | IOMMU_PGF_OBJL)) ==
sys/x86/iommu/iommu_utils.c
172
(IOMMU_PGF_WAITOK | IOMMU_PGF_OBJL))
sys/x86/iommu/iommu_utils.c
174
else if ((flags & (IOMMU_PGF_WAITOK | IOMMU_PGF_OBJL)) == 0)
sys/x86/iommu/iommu_utils.c
85
((flags & IOMMU_PGF_WAITOK) != 0 ? VM_ALLOC_WAITFAIL :