[MIPS] Fix USER_PTRS_PER_PGD for 64K page size.
authorPeter Watkins <treestem@gmail.com>
Wed, 23 Aug 2006 15:15:49 +0000 (11:15 -0400)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 27 Sep 2006 12:37:52 +0000 (13:37 +0100)
The code in pgtable-64.h assumes TASK_SIZE is always bigger than a first
level PGDIR_SIZE. This is not the case for 64K pages, where task size is
40 bits (1TB) and a pgd entry can map 42 bits. This leads to
USER_PTRS_PER_PGD being zero for 64K pages.

Signed-off-by: Peter Watkins <treestem@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
include/asm-mips/pgtable-64.h

index c59a1e21f5b0d26c87c2606a3a64fa74e84487a8..d05fb6f38aa7523c61e943f81d33ab2257058a1d 100644 (file)
 #define PTRS_PER_PMD   ((PAGE_SIZE << PMD_ORDER) / sizeof(pmd_t))
 #define PTRS_PER_PTE   ((PAGE_SIZE << PTE_ORDER) / sizeof(pte_t))
 
+#if PGDIR_SIZE >= TASK_SIZE
+#define USER_PTRS_PER_PGD       (1)
+#else
 #define USER_PTRS_PER_PGD      (TASK_SIZE / PGDIR_SIZE)
-#define FIRST_USER_ADDRESS     0
+#endif
+#define FIRST_USER_ADDRESS     0UL
 
 #define VMALLOC_START          MAP_BASE
 #define VMALLOC_END    \