Commit d686a547 authored by Alexander Graf's avatar Alexander Graf

Merge commit 'origin/master' into kvm-ppc-3.8

parents d591390d 18eb54cf
...@@ -43,6 +43,7 @@ ...@@ -43,6 +43,7 @@
#include <asm/apicdef.h> #include <asm/apicdef.h>
#include <asm/hypervisor.h> #include <asm/hypervisor.h>
#include <asm/kvm_guest.h> #include <asm/kvm_guest.h>
#include <asm/context_tracking.h>
static int kvmapf = 1; static int kvmapf = 1;
...@@ -121,6 +122,8 @@ void kvm_async_pf_task_wait(u32 token) ...@@ -121,6 +122,8 @@ void kvm_async_pf_task_wait(u32 token)
struct kvm_task_sleep_node n, *e; struct kvm_task_sleep_node n, *e;
DEFINE_WAIT(wait); DEFINE_WAIT(wait);
rcu_irq_enter();
spin_lock(&b->lock); spin_lock(&b->lock);
e = _find_apf_task(b, token); e = _find_apf_task(b, token);
if (e) { if (e) {
...@@ -128,6 +131,8 @@ void kvm_async_pf_task_wait(u32 token) ...@@ -128,6 +131,8 @@ void kvm_async_pf_task_wait(u32 token)
hlist_del(&e->link); hlist_del(&e->link);
kfree(e); kfree(e);
spin_unlock(&b->lock); spin_unlock(&b->lock);
rcu_irq_exit();
return; return;
} }
...@@ -152,13 +157,16 @@ void kvm_async_pf_task_wait(u32 token) ...@@ -152,13 +157,16 @@ void kvm_async_pf_task_wait(u32 token)
/* /*
* We cannot reschedule. So halt. * We cannot reschedule. So halt.
*/ */
rcu_irq_exit();
native_safe_halt(); native_safe_halt();
rcu_irq_enter();
local_irq_disable(); local_irq_disable();
} }
} }
if (!n.halted) if (!n.halted)
finish_wait(&n.wq, &wait); finish_wait(&n.wq, &wait);
rcu_irq_exit();
return; return;
} }
EXPORT_SYMBOL_GPL(kvm_async_pf_task_wait); EXPORT_SYMBOL_GPL(kvm_async_pf_task_wait);
...@@ -252,10 +260,10 @@ do_async_page_fault(struct pt_regs *regs, unsigned long error_code) ...@@ -252,10 +260,10 @@ do_async_page_fault(struct pt_regs *regs, unsigned long error_code)
break; break;
case KVM_PV_REASON_PAGE_NOT_PRESENT: case KVM_PV_REASON_PAGE_NOT_PRESENT:
/* page is swapped out by the host. */ /* page is swapped out by the host. */
rcu_irq_enter(); exception_enter(regs);
exit_idle(); exit_idle();
kvm_async_pf_task_wait((u32)read_cr2()); kvm_async_pf_task_wait((u32)read_cr2());
rcu_irq_exit(); exception_exit(regs);
break; break;
case KVM_PV_REASON_PAGE_READY: case KVM_PV_REASON_PAGE_READY:
rcu_irq_enter(); rcu_irq_enter();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment