/src/tests/lib/libnvmm/ |
h_io_assist.c | 139 if (nvmm_hva_map(mach, (uintptr_t)instbuf, PAGE_SIZE) == -1) 140 err(errno, "nvmm_hva_map"); 141 if (nvmm_hva_map(mach, (uintptr_t)databuf, PAGE_SIZE) == -1) 142 err(errno, "nvmm_hva_map"); 169 if (nvmm_hva_map(mach, (uintptr_t)L4, PAGE_SIZE) == -1) 170 err(errno, "nvmm_hva_map"); 171 if (nvmm_hva_map(mach, (uintptr_t)L3, PAGE_SIZE) == -1) 172 err(errno, "nvmm_hva_map"); 173 if (nvmm_hva_map(mach, (uintptr_t)L2, PAGE_SIZE) == -1) 174 err(errno, "nvmm_hva_map"); [all...] |
h_mem_assist.c | 283 if (nvmm_hva_map(mach, (uintptr_t)instbuf, PAGE_SIZE) == -1) 284 err(errno, "nvmm_hva_map"); 307 if (nvmm_hva_map(mach, (uintptr_t)L4, PAGE_SIZE) == -1) 308 err(errno, "nvmm_hva_map"); 309 if (nvmm_hva_map(mach, (uintptr_t)L3, PAGE_SIZE) == -1) 310 err(errno, "nvmm_hva_map"); 311 if (nvmm_hva_map(mach, (uintptr_t)L2, PAGE_SIZE) == -1) 312 err(errno, "nvmm_hva_map"); 313 if (nvmm_hva_map(mach, (uintptr_t)L1, PAGE_SIZE) == -1) 314 err(errno, "nvmm_hva_map"); [all...] |
/src/lib/libnvmm/ |
nvmm.h | 117 int nvmm_hva_map(struct nvmm_machine *, uintptr_t, size_t);
|
libnvmm.c | 485 nvmm_hva_map(struct nvmm_machine *mach, uintptr_t hva, size_t size) function in typeref:typename:int
|
/src/sys/dev/nvmm/ |
nvmm.c | 790 nvmm_hva_map(struct nvmm_owner *owner, struct nvmm_ioc_hva_map *args) function in typeref:typename:int 1225 return nvmm_hva_map(owner, data);
|