diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-05-13 20:55:35 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-05-13 20:55:35 -0400 |
commit | 6c645ac72582bacb85b90a1cf88e81a13045aba4 (patch) | |
tree | a6101de4bd5426ebfb06b097749251ff6f9e98b2 /arch/sh64 | |
parent | e827f20f1d34e91fbbb0df4674ddd8c3aad517da (diff) |
sh64: generic quicklist support.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh64')
-rw-r--r-- | arch/sh64/Kconfig | 3 | ||||
-rw-r--r-- | arch/sh64/mm/init.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/arch/sh64/Kconfig b/arch/sh64/Kconfig index e14b533558c8..ff654204b7d4 100644 --- a/arch/sh64/Kconfig +++ b/arch/sh64/Kconfig | |||
@@ -17,6 +17,9 @@ config MMU | |||
17 | bool | 17 | bool |
18 | default y | 18 | default y |
19 | 19 | ||
20 | config QUICKLIST | ||
21 | def_bool y | ||
22 | |||
20 | config RWSEM_GENERIC_SPINLOCK | 23 | config RWSEM_GENERIC_SPINLOCK |
21 | bool | 24 | bool |
22 | default y | 25 | default y |
diff --git a/arch/sh64/mm/init.c b/arch/sh64/mm/init.c index 5dc08787259c..559717f30d1f 100644 --- a/arch/sh64/mm/init.c +++ b/arch/sh64/mm/init.c | |||
@@ -84,7 +84,7 @@ void show_mem(void) | |||
84 | printk("%d reserved pages\n",reserved); | 84 | printk("%d reserved pages\n",reserved); |
85 | printk("%d pages shared\n",shared); | 85 | printk("%d pages shared\n",shared); |
86 | printk("%d pages swap cached\n",cached); | 86 | printk("%d pages swap cached\n",cached); |
87 | printk("%ld pages in page table cache\n",pgtable_cache_size); | 87 | printk("%ld pages in page table cache\n", quicklist_total_size()); |
88 | } | 88 | } |
89 | 89 | ||
90 | /* | 90 | /* |