Changes in kernel/arch/sparc64/src/mm/sun4v/as.c [e2a0d76:b0c2075] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/mm/sun4v/as.c
re2a0d76 rb0c2075 66 66 { 67 67 #ifdef CONFIG_TSB 68 uint8_t order = fnzb32(69 (TSB_ENTRY_COUNT * sizeof(tsb_entry_t)) >> FRAME_WIDTH);68 size_t frames = 69 SIZE2FRAMES(TSB_ENTRY_COUNT * sizeof(tsb_entry_t)); 70 70 71 uintptr_t tsb = frame_alloc( order, flags, 0);71 uintptr_t tsb = frame_alloc(frames, flags, 0); 72 72 if (!tsb) 73 73 return -1;
Note:
See TracChangeset
for help on using the changeset viewer.