Home
last modified time | relevance | path

Searched refs:slotspace (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/sys/arch/amd64/amd64/
H A Dmachdep.c276 extern struct slotspace slotspace;
1632 memset(&slotspace, 0, sizeof(slotspace)); in init_slotspace()
1635 slotspace.area[SLAREA_USER].sslot = 0; in init_slotspace()
1636 slotspace.area[SLAREA_USER].nslot = PDIR_SLOT_USERLIM+1; in init_slotspace()
1637 slotspace.area[SLAREA_USER].active = true; in init_slotspace()
1641 slotspace.area[SLAREA_PTE].sslot = PDIR_SLOT_PTE; in init_slotspace()
1642 slotspace.area[SLAREA_PTE].nslot = 1; in init_slotspace()
1643 slotspace in init_slotspace()
[all...]
/netbsd-src/sys/arch/x86/include/
H A Dpmap_private.h103 struct slotspace { struct
111 extern struct slotspace slotspace; argument
/netbsd-src/sys/arch/amd64/include/
H A Dpmap_private.h102 #define L4_SLOT_PTE slotspace.area[SLAREA_PTE].sslot
106 #define L4_SLOT_KERN slotspace.area[SLAREA_MAIN].sslot
/netbsd-src/sys/arch/x86/x86/
H A Dpmap.c343 struct slotspace slotspace __read_mostly;
1458 size_t sslot = slotspace.area[type].sslot;
1459 size_t nslot = slotspace.area[type].nslot;
1469 * Finally we update the associated entry in the slotspace structure.
1508 if (!slotspace.area[i].active)
1510 if (slotspace.area[i].sslot >= curslot &&
1511 slotspace.area[i].sslot < minsslot) {
1512 minsslot = slotspace.area[i].sslot;
1513 minnslot = slotspace
[all...]