Changes in kernel/arch/sparc64/src/mm/sun4v/as.c [e08162b:63e27ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/mm/sun4v/as.c
re08162b r63e27ef 37 37 #include <arch/mm/pagesize.h> 38 38 #include <arch/mm/tlb.h> 39 #include <assert.h> 39 40 #include <genarch/mm/page_ht.h> 40 41 #include <genarch/mm/asid_fifo.h> 41 #include <debug.h>42 42 #include <config.h> 43 43 #include <arch/sun4v/hypercall.h> … … 50 50 #include <bitops.h> 51 51 #include <macros.h> 52 #include <mem str.h>52 #include <mem.h> 53 53 54 54 #endif /* CONFIG_TSB */ … … 121 121 uintptr_t base = ALIGN_DOWN(config.base, 1 << KERNEL_PAGE_WIDTH); 122 122 123 ASSERT(as->arch.tsb_description.tsb_base);123 assert(as->arch.tsb_description.tsb_base); 124 124 uintptr_t tsb = PA2KA(as->arch.tsb_description.tsb_base); 125 125 … … 160 160 uintptr_t base = ALIGN_DOWN(config.base, 1 << KERNEL_PAGE_WIDTH); 161 161 162 ASSERT(as->arch.tsb_description.tsb_base);162 assert(as->arch.tsb_description.tsb_base); 163 163 164 164 uintptr_t tsb = PA2KA(as->arch.tsb_description.tsb_base);
Note:
See TracChangeset
for help on using the changeset viewer.