Changes in kernel/genarch/src/mm/as_pt.c [e2a0d76:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/mm/as_pt.c
re2a0d76 r9d58539 73 73 pte_t *ptl0_create(unsigned int flags) 74 74 { 75 pte_t *dst_ptl0 = (pte_t *) PA2KA(frame_alloc(PTL0_SIZE,76 FRAME_LOWMEM , 0));75 pte_t *dst_ptl0 = (pte_t *) frame_alloc(PTL0_SIZE, 76 FRAME_LOWMEM | FRAME_KA); 77 77 size_t table_size = FRAME_SIZE << PTL0_SIZE; 78 78 … … 82 82 /* 83 83 * Copy the kernel address space portion to new PTL0. 84 * 84 85 */ 85 86
Note:
See TracChangeset
for help on using the changeset viewer.