aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh64
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sh64')
-rw-r--r--arch/sh64/Kconfig3
-rw-r--r--arch/sh64/mm/init.c2
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
20config QUICKLIST
21 def_bool y
22
20config RWSEM_GENERIC_SPINLOCK 23config 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/*