Lines Matching refs:mm
752 struct vm_mem_map *mm; in vm_iommu_map() local
761 mm = &vm->mem.mem_maps[i]; in vm_iommu_map()
762 KASSERT((mm->flags & VM_MEMMAP_F_IOMMU) == 0, in vm_iommu_map()
764 mm->gpa, mm->len, mm->flags)); in vm_iommu_map()
765 if ((mm->flags & VM_MEMMAP_F_WIRED) == 0) in vm_iommu_map()
767 mm->flags |= VM_MEMMAP_F_IOMMU; in vm_iommu_map()
769 for (gpa = mm->gpa; gpa < mm->gpa + mm->len; gpa += PAGE_SIZE) { in vm_iommu_map()
799 struct vm_mem_map *mm; in vm_iommu_unmap() local
808 mm = &vm->mem.mem_maps[i]; in vm_iommu_unmap()
809 if ((mm->flags & VM_MEMMAP_F_IOMMU) == 0) in vm_iommu_unmap()
811 mm->flags &= ~VM_MEMMAP_F_IOMMU; in vm_iommu_unmap()
812 KASSERT((mm->flags & VM_MEMMAP_F_WIRED) != 0, in vm_iommu_unmap()
814 mm->gpa, mm->len, mm->flags)); in vm_iommu_unmap()
816 for (gpa = mm->gpa; gpa < mm->gpa + mm->len; gpa += PAGE_SIZE) { in vm_iommu_unmap()