Changes in kernel/arch/ia64/src/mm/vhpt.c [e2a0d76:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/mm/vhpt.c
re2a0d76 r9d58539 42 42 uintptr_t vhpt_set_up(void) 43 43 { 44 vhpt_base = (vhpt_entry_t *) PA2KA(frame_alloc(VHPT_WIDTH - FRAME_WIDTH,45 FRAME_ ATOMIC, 0));44 vhpt_base = frame_alloc(VHPT_WIDTH - FRAME_WIDTH, 45 FRAME_KA | FRAME_ATOMIC); 46 46 if (!vhpt_base) 47 47 panic("Kernel configured with VHPT but no memory for table."); 48 49 48 vhpt_invalidate_all(); 50 49 return (uintptr_t) vhpt_base;
Note:
See TracChangeset
for help on using the changeset viewer.