Searched refs:OBJT_DEFAULT (Results 1 - 22 of 22) sorted by relevance

/freebsd-10-stable/sys/vm/
H A Dvm.h87 enum obj_type { OBJT_DEFAULT, OBJT_SWAP, OBJT_VNODE, OBJT_DEVICE, OBJT_PHYS, enumerator in enum:obj_type
H A Ddefault_pager.c65 * pagerops for OBJT_DEFAULT - "default pager".
101 object = vm_object_allocate(OBJT_DEFAULT,
124 * OBJT_DEFAULT objects have no special resources allocated to them.
130 * Load pages from backing store. Since OBJT_DEFAULT is converted to
H A Dvm_object.c236 case OBJT_DEFAULT:
336 case OBJT_DEFAULT:
567 (object->type == OBJT_DEFAULT ||
573 (object->type == OBJT_DEFAULT ||
607 (robject->type == OBJT_DEFAULT ||
794 KASSERT(object->cred == NULL || object->type == OBJT_DEFAULT ||
1094 * MADV_FREE (OBJT_DEFAULT/OBJT_SWAP objects,
1122 * MADV_FREE only operates on OBJT_DEFAULT or OBJT_SWAP pages
1126 if ((tobject->type != OBJT_DEFAULT &&
1232 (source->type == OBJT_DEFAULT ||
[all...]
H A Dvm_fault.c542 if (fs.object->type != OBJT_DEFAULT ||
593 if (fs.object->type != OBJT_DEFAULT) {
855 ((fs.object->type == OBJT_DEFAULT) ||
1173 lobject->type == OBJT_DEFAULT &&
1316 dst_object = vm_object_allocate(OBJT_DEFAULT,
H A Dvm_mmap.c308 handle_type = OBJT_DEFAULT;
316 handle_type = OBJT_DEFAULT;
901 if (object->type == OBJT_DEFAULT ||
1324 KASSERT(obj->type == OBJT_DEFAULT || obj->type == OBJT_SWAP,
1542 case OBJT_DEFAULT:
H A Dvm_pageout.c376 * It doesn't cost us anything to pageout OBJT_DEFAULT or OBJT_SWAP
653 object->type == OBJT_DEFAULT) {
1192 if ((object->type != OBJT_SWAP) && (object->type != OBJT_DEFAULT)) {
1596 case OBJT_DEFAULT:
H A Dswap_pager.c589 * OBJT_SWAP object. We do this by creating an OBJT_DEFAULT object
624 object = vm_object_allocate(OBJT_DEFAULT, pindex);
642 object = vm_object_allocate(OBJT_DEFAULT, pindex);
972 * We have to revert the type to OBJT_DEFAULT so we do not accidently
983 srcobject->type = OBJT_DEFAULT;
1258 * We support both OBJT_DEFAULT and OBJT_SWAP objects. DEFAULT objects
H A Dvm_map.c1675 object = vm_object_allocate(OBJT_DEFAULT,
1753 object = vm_object_allocate(OBJT_DEFAULT,
2023 if (obj->type != OBJT_DEFAULT && obj->type != OBJT_SWAP) {
3188 (src_object->type == OBJT_DEFAULT ||
3361 object = vm_object_allocate(OBJT_DEFAULT,
4110 entry->object.vm_object = vm_object_allocate(OBJT_DEFAULT,
H A Dvm_glue.c356 ksobj = vm_object_allocate(OBJT_DEFAULT, pages);
H A Dvm_page.c2594 if (m->valid == 0 || object->type == OBJT_DEFAULT ||
/freebsd-10-stable/sys/fs/procfs/
H A Dprocfs_map.c165 case OBJT_DEFAULT:
/freebsd-10-stable/sys/kern/
H A Dimgact_gzip.c255 OBJT_DEFAULT,
H A Dsubr_uio.c475 VM_PROT_ALL, MAP_PRIVATE | MAP_ANON, OBJT_DEFAULT, NULL, 0);
H A Duipc_shm.c556 shmfd->shm_object = vm_pager_allocate(OBJT_DEFAULT, NULL,
H A Dlink_elf.c887 ef->object = vm_object_allocate(OBJT_DEFAULT, mapsize >> PAGE_SHIFT);
H A Dlink_elf_obj.c708 ef->object = vm_object_allocate(OBJT_DEFAULT,
H A Dkern_proc.c2101 case OBJT_DEFAULT:
2336 case OBJT_DEFAULT:
H A Dimgact_elf.c1495 ignore_entry = object->type != OBJT_DEFAULT &&
/freebsd-10-stable/sys/dev/drm2/
H A Ddrm_gem.c113 obj->vm_obj = vm_pager_allocate(OBJT_DEFAULT, NULL, size,
/freebsd-10-stable/sys/dev/agp/
H A Dagp.c493 mem->am_obj = vm_object_allocate(OBJT_DEFAULT, atop(round_page(size)));
H A Dagp_i810.c2055 mem->am_obj = vm_object_allocate(OBJT_DEFAULT,
/freebsd-10-stable/sys/amd64/vmm/
H A Dvmm.c608 obj = vm_object_allocate(OBJT_DEFAULT, len >> PAGE_SHIFT);

Completed in 165 milliseconds