Hi Avi, Today's linux-next merge of the kvm tree got a conflict in arch/powerpc/kvm/timing.h between commit 38634e6769920929385f1ffc8820dc3e893cc630 ("powerpc/kvm: Remove problematic BUILD_BUG_ON statement") from Linus' tree and commit 8976402d633b79683667c44ca8252f9b26eebe71 ("KVM: powerpc: Fix BUILD_BUG_ON condition") from the kvm tree. Just context changes. I fixed it up (see below) and can carry it for a while. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc arch/powerpc/kvm/timing.h index 806ef67,a550f0f..0000000 --- a/arch/powerpc/kvm/timing.h +++ b/arch/powerpc/kvm/timing.h @@@ -48,11 -48,7 +48,11 @@@ static inline void kvmppc_set_exit_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)); + BUILD_BUG_ON(!__builtin_constant_p(type)); + */ switch (type) { case EXT_INTR_EXITS: vcpu->stat.ext_intr_exits++; -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html