From b39ffbf8b14de2e7c1679462313cf32abb7ef463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= Date: Wed, 17 Jul 2013 16:54:59 +0200 Subject: slub: don't use cpu partial pages on UP MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit cpu partial pages are used to avoid contention which does not exist in the UP case. So let SLUB_CPU_PARTIAL depend on SMP. Acked-by: Christoph Lameter Signed-off-by: Uwe Kleine-König Signed-off-by: Pekka Enberg diff --git a/init/Kconfig b/init/Kconfig index 247084b..63c67de 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -1598,7 +1598,7 @@ endchoice config SLUB_CPU_PARTIAL default y - depends on SLUB + depends on SLUB && SMP bool "SLUB per cpu partial cache" help Per cpu partial caches accellerate objects allocation and freeing -- cgit v0.10.2