aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/include/asm
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2010-01-05 12:35:00 +0900
committerPaul Mundt <lethal@linux-sh.org>2010-01-05 12:35:00 +0900
commit0176bd3dab4fe522bfb6ceab9e3c441fe0305738 (patch)
treed532c56785fad657581fc74794881dfaae99fe5c /arch/sh/include/asm
parentMerge branch 'sh/pgtable' of git://github.com/mfleming/linux-2.6 (diff)
downloadlinux-dev-0176bd3dab4fe522bfb6ceab9e3c441fe0305738.tar.xz
linux-dev-0176bd3dab4fe522bfb6ceab9e3c441fe0305738.zip
sh: Drop down to a single quicklist.
We previously had 2 quicklists, one for the PGD case and one for PTEs. Now that the PGD/PMD cases are handled through slab caches due to the multi-level configurability, only the PTE quicklist remains. As such, reduce NR_QUICK to its appropriate size and bump down the PTE quicklist index. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include/asm')
-rw-r--r--arch/sh/include/asm/pgalloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/include/asm/pgalloc.h b/arch/sh/include/asm/pgalloc.h
index e106474996b2..f8982f4e0405 100644
--- a/arch/sh/include/asm/pgalloc.h
+++ b/arch/sh/include/asm/pgalloc.h
@@ -4,7 +4,7 @@
#include <linux/quicklist.h>
#include <asm/page.h>
-#define QUICK_PT 1 /* Other page table pages that are zero on free */
+#define QUICK_PT 0 /* Other page table pages that are zero on free */
extern pgd_t *pgd_alloc(struct mm_struct *);
extern void pgd_free(struct mm_struct *mm, pgd_t *pgd);