commit | d33ad328c0025c45f4688a769aeebddc342222c1 | [log] [tgz] |
---|---|---|
author | Alexander Graf <agraf@suse.de> | Fri Dec 09 15:47:53 2011 +0100 |
committer | Avi Kivity <avi@redhat.com> | Mon Mar 05 14:52:28 2012 +0200 |
tree | a19cbfe239e772d77da6aaebdef0b71bc813a215 | |
parent | 7d82714d4d1293edc57439c796750310866624b2 [diff] |
KVM: PPC: Book3s: PR: No irq_disable in vcpu_run Somewhere during merges we ended up from local_irq_enable() foo(); local_irq_disable() to always keeping irqs enabled during that part. However, we now have the following code: foo(); local_irq_disable() which disables interrupts without the surrounding code enabling them again! So let's remove that disable and be happy. Signed-off-by: Alexander Graf <agraf@suse.de> Signed-off-by: Avi Kivity <avi@redhat.com>