aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kvm
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2009-11-05 17:10:34 +1100
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2009-11-05 17:16:08 +1100
commit41c8c46bfe52488779e227b77222402579573ccf (patch)
treebe7c8d42106997833d76bf481091047337b34a8d /arch/powerpc/kvm
parentpowerpc/8xx: Fix build breakage with sparse irq changes (diff)
downloadlinux-dev-41c8c46bfe52488779e227b77222402579573ccf.tar.xz
linux-dev-41c8c46bfe52488779e227b77222402579573ccf.zip
powerpc/kvm: Remove problematic BUILD_BUG_ON statement
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kvm')
-rw-r--r--arch/powerpc/kvm/timing.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/kvm/timing.h b/arch/powerpc/kvm/timing.h
index bb13b1f3cd5a..806ef67868bd 100644
--- a/arch/powerpc/kvm/timing.h
+++ b/arch/powerpc/kvm/timing.h
@@ -48,7 +48,11 @@ static inline void kvmppc_set_exit_type(struct kvm_vcpu *vcpu, int type) {}
static inline void kvmppc_account_exit_stat(struct kvm_vcpu *vcpu, int type)
{
/* type has to be known at build time for optimization */
+
+ /* The BUILD_BUG_ON below breaks in funny ways, commented out
+ * for now ... -BenH
BUILD_BUG_ON(__builtin_constant_p(type));
+ */
switch (type) {
case EXT_INTR_EXITS:
vcpu->stat.ext_intr_exits++;