Changes in kernel/arch/sparc64/src/mm/sun4v/as.c [63e27ef:e08162b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/mm/sun4v/as.c
r63e27ef re08162b 37 37 #include <arch/mm/pagesize.h> 38 38 #include <arch/mm/tlb.h> 39 #include <assert.h>40 39 #include <genarch/mm/page_ht.h> 41 40 #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 .h>52 #include <memstr.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.