On 07.02.2013, at 23:17, Scott Wood wrote: > Commit 2765788fcc3dc64920dd2be3d32319b50b1e2813 ("KVM: PPC: BookE: Handle > alignment interrupts") broke the build by adding mismatched parentheses. > > Signed-off-by: Scott Wood <scottwood@xxxxxxxxxxxxx> Thanks a lot for catching this. This patch hasn't gone into kvm-ppc-next yet and is still in my (partially untested) kvm-ppc-queue branch. Would you mind if I just squash this fix with the original commit? That way we don't break bisectability later. Alex > --- > Against kvm-ppc-queue > > arch/powerpc/kvm/booke_interrupts.S | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/powerpc/kvm/booke_interrupts.S b/arch/powerpc/kvm/booke_interrupts.S > index 7fa4167..f4bb55c 100644 > --- a/arch/powerpc/kvm/booke_interrupts.S > +++ b/arch/powerpc/kvm/booke_interrupts.S > @@ -45,13 +45,13 @@ > (1<<BOOKE_INTERRUPT_DEBUG)) > > #define NEED_DEAR_MASK ((1<<BOOKE_INTERRUPT_DATA_STORAGE) | \ > - (1<<BOOKE_INTERRUPT_DTLB_MISS)) | \ > + (1<<BOOKE_INTERRUPT_DTLB_MISS) | \ > (1<<BOOKE_INTERRUPT_ALIGNMENT)) > > #define NEED_ESR_MASK ((1<<BOOKE_INTERRUPT_DATA_STORAGE) | \ > (1<<BOOKE_INTERRUPT_INST_STORAGE) | \ > (1<<BOOKE_INTERRUPT_PROGRAM) | \ > - (1<<BOOKE_INTERRUPT_DTLB_MISS)) | \ > + (1<<BOOKE_INTERRUPT_DTLB_MISS) | \ > (1<<BOOKE_INTERRUPT_ALIGNMENT)) > > .macro KVM_HANDLER ivor_nr scratch srr0 > -- > 1.7.9.5 > > -- > To unsubscribe from this list: send the line "unsubscribe kvm-ppc" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html