* [PATCH] KVM: PPC: e500: fix BOOKE_INTERRUPT_ALIGNMENT build break
@ 2013-02-07 22:17 Scott Wood
2013-02-08 0:20 ` Alexander Graf
0 siblings, 1 reply; 4+ messages in thread
From: Scott Wood @ 2013-02-07 22:17 UTC (permalink / raw)
To: agraf; +Cc: kvm, kvm-ppc
Commit 2765788fcc3dc64920dd2be3d32319b50b1e2813 ("KVM: PPC: BookE: Handle
alignment interrupts") broke the build by adding mismatched parentheses.
Signed-off-by: Scott Wood <scottwood@freescale.com>
---
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
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] KVM: PPC: e500: fix BOOKE_INTERRUPT_ALIGNMENT build break
2013-02-07 22:17 [PATCH] KVM: PPC: e500: fix BOOKE_INTERRUPT_ALIGNMENT build break Scott Wood
@ 2013-02-08 0:20 ` Alexander Graf
2013-02-08 0:22 ` Scott Wood
0 siblings, 1 reply; 4+ messages in thread
From: Alexander Graf @ 2013-02-08 0:20 UTC (permalink / raw)
To: Scott Wood; +Cc: kvm, kvm-ppc
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@freescale.com>
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@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] KVM: PPC: e500: fix BOOKE_INTERRUPT_ALIGNMENT build break
2013-02-08 0:20 ` Alexander Graf
@ 2013-02-08 0:22 ` Scott Wood
2013-02-08 0:52 ` Alexander Graf
0 siblings, 1 reply; 4+ messages in thread
From: Scott Wood @ 2013-02-08 0:22 UTC (permalink / raw)
To: Alexander Graf; +Cc: kvm, kvm-ppc
On 02/07/2013 06:20:33 PM, Alexander Graf wrote:
>
> 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@freescale.com>
>
> 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.
Go ahead.
-Scott
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] KVM: PPC: e500: fix BOOKE_INTERRUPT_ALIGNMENT build break
2013-02-08 0:22 ` Scott Wood
@ 2013-02-08 0:52 ` Alexander Graf
0 siblings, 0 replies; 4+ messages in thread
From: Alexander Graf @ 2013-02-08 0:52 UTC (permalink / raw)
To: Scott Wood; +Cc: kvm, kvm-ppc
On 08.02.2013, at 01:22, Scott Wood wrote:
> On 02/07/2013 06:20:33 PM, Alexander Graf wrote:
>> 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@freescale.com>
>> 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.
>
> Go ahead.
Thanks, done :)
Alex
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-02-08 0:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-07 22:17 [PATCH] KVM: PPC: e500: fix BOOKE_INTERRUPT_ALIGNMENT build break Scott Wood
2013-02-08 0:20 ` Alexander Graf
2013-02-08 0:22 ` Scott Wood
2013-02-08 0:52 ` Alexander Graf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox