Rev 2927 | Rev 4344 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2927 | Rev 3674 | ||
---|---|---|---|
Line 50... | Line 50... | ||
50 | */ |
50 | */ |
51 | static struct { |
51 | static struct { |
52 | uintptr_t virt_page; |
52 | uintptr_t virt_page; |
53 | uintptr_t phys_page; |
53 | uintptr_t phys_page; |
54 | int pagesize_code; |
54 | int pagesize_code; |
55 | } bsp_locked_dtlb_entry[DTLB_ENTRY_COUNT]; |
55 | } bsp_locked_dtlb_entry[DTLB_MAX_LOCKED_ENTRIES]; |
56 | 56 | ||
57 | /** Number of entries in bsp_locked_dtlb_entry array. */ |
57 | /** Number of entries in bsp_locked_dtlb_entry array. */ |
58 | static count_t bsp_locked_dtlb_entries = 0; |
58 | static count_t bsp_locked_dtlb_entries = 0; |
59 | #endif /* CONFIG_SMP */ |
59 | #endif /* CONFIG_SMP */ |
60 | 60 | ||
Line 164... | Line 164... | ||
164 | return virtaddr; |
164 | return virtaddr; |
165 | } |
165 | } |
166 | 166 | ||
167 | /** @} |
167 | /** @} |
168 | */ |
168 | */ |
- | 169 |