aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86/percpu.h
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-09-15 09:52:26 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-09-15 09:52:26 +0100
commitd94ea5a6cf6dad01765735e50bd43d398c3213ad (patch)
treea4c06eef442157aacaf05dcfee083bc7e792e517 /xen/include/asm-x86/percpu.h
parent6a126d07d3c0f77b6cb8f67c315b9aa55b912d66 (diff)
downloadxen-d94ea5a6cf6dad01765735e50bd43d398c3213ad.tar.gz
xen-d94ea5a6cf6dad01765735e50bd43d398c3213ad.tar.bz2
xen-d94ea5a6cf6dad01765735e50bd43d398c3213ad.zip
x86: Re-increase size of percpu area
Per-cpu vector code add a lot of percpu data. Together with perfc enabled, one page per cpu is not enough any more. Signed-off-by: Yang Xiaowei <xiaowei.yang@intel.com>
Diffstat (limited to 'xen/include/asm-x86/percpu.h')
-rw-r--r--xen/include/asm-x86/percpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/include/asm-x86/percpu.h b/xen/include/asm-x86/percpu.h
index ad5c667ace..d8860203ae 100644
--- a/xen/include/asm-x86/percpu.h
+++ b/xen/include/asm-x86/percpu.h
@@ -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. */