diff options
Diffstat (limited to 'include/asm-mips64')
-rw-r--r-- | include/asm-mips64/pgalloc.h | 4 | ||||
-rw-r--r-- | include/asm-mips64/pgtable.h | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/include/asm-mips64/pgalloc.h b/include/asm-mips64/pgalloc.h index 8d091227a..d9a766097 100644 --- a/include/asm-mips64/pgalloc.h +++ b/include/asm-mips64/pgalloc.h @@ -192,9 +192,9 @@ extern inline pmd_t *pmd_alloc(pgd_t * pgd, unsigned long address) } extern pte_t kptbl[(PAGE_SIZE<<KPTBL_PAGE_ORDER)/sizeof(pte_t)]; +extern pmd_t kpmdtbl[PTRS_PER_PMD]; -#define MAGIC_PMD_VAL ((pmd_t *)0x1234) -#define pmd_alloc_kernel(d,a) MAGIC_PMD_VAL +#define pmd_alloc_kernel(d,a) (pmd_t *)kpmdtbl extern inline pte_t * pte_alloc_kernel(pmd_t * pmd, unsigned long address) { diff --git a/include/asm-mips64/pgtable.h b/include/asm-mips64/pgtable.h index e3f688c8a..6e6212a06 100644 --- a/include/asm-mips64/pgtable.h +++ b/include/asm-mips64/pgtable.h @@ -64,6 +64,11 @@ do { \ * that the failure is recognized later on. Linux does not seem to * handle these failures very well though. The empty_bad_page_table has * invalid pte entries in it, to force page faults. + * Vmalloc handling: vmalloc uses swapper_pg_dir[0] (returned by + * pgd_offset_k), which is initalized to point to kpmdtbl. kpmdtbl is + * the only single page pmd in the system. kpmdtbl entries point into + * kptbl[] array. We reserve 1<<KPTBL_PAGE_ORDER pages to hold the + * vmalloc range translations, which the fault handler looks at. */ #endif /* !defined (_LANGUAGE_ASSEMBLY) */ @@ -442,7 +447,7 @@ extern inline pte_t pte_modify(pte_t pte, pgprot_t newprot) #define page_pte(page) page_pte_prot(page, __pgprot(0)) /* to find an entry in a kernel page-table-directory */ -#define pgd_offset_k(address) pgd_offset(&init_mm, address) +#define pgd_offset_k(address) pgd_offset(&init_mm, 0) #define pgd_index(address) ((address >> PGDIR_SHIFT) & (PTRS_PER_PGD - 1)) |