From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Yang, Xiaowei" Subject: [PATCH] reincrease percpu area Date: Fri, 11 Sep 2009 18:46:05 +0800 Message-ID: <4AAA2A6D.9080509@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: "xen-devel@lists.xensource.com" List-Id: xen-devel@lists.xenproject.org Per-cpu vector code add a lot of percpu data. Together with perfc enabled, one page size per cpu is not enough any more. Signed-off-by: Yang Xiaowei diff -r d2a32e24fe50 xen/include/asm-x86/percpu.h --- a/xen/include/asm-x86/percpu.h Wed Sep 09 16:39:41 2009 +0100 +++ b/xen/include/asm-x86/percpu.h Fri Sep 11 17:39:57 2009 +0800 @@ -1,7 +1,7 @@ #ifndef __X86_PERCPU_H__ #define __X86_PERCPU_H__ -#define PERCPU_SHIFT 12 +#define PERCPU_SHIFT 13 #define PERCPU_SIZE (1UL << PERCPU_SHIFT) /* Separate out the type, so (int[3], foo) works. */ Thanks, Xiaowei