diff options
Diffstat (limited to 'arch/powerpc/kvm/book3s_hv.c')
-rw-r--r-- | arch/powerpc/kvm/book3s_hv.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/arch/powerpc/kvm/book3s_hv.c b/arch/powerpc/kvm/book3s_hv.c index 3d022766294a..fad52f226c12 100644 --- a/arch/powerpc/kvm/book3s_hv.c +++ b/arch/powerpc/kvm/book3s_hv.c | |||
@@ -2283,9 +2283,14 @@ static void post_guest_process(struct kvmppc_vcore *vc, bool is_master) | |||
2283 | } | 2283 | } |
2284 | list_del_init(&vc->preempt_list); | 2284 | list_del_init(&vc->preempt_list); |
2285 | if (!is_master) { | 2285 | if (!is_master) { |
2286 | vc->vcore_state = vc->runner ? VCORE_PREEMPT : VCORE_INACTIVE; | 2286 | if (still_running > 0) { |
2287 | if (still_running > 0) | ||
2288 | kvmppc_vcore_preempt(vc); | 2287 | kvmppc_vcore_preempt(vc); |
2288 | } else if (vc->runner) { | ||
2289 | vc->vcore_state = VCORE_PREEMPT; | ||
2290 | kvmppc_core_start_stolen(vc); | ||
2291 | } else { | ||
2292 | vc->vcore_state = VCORE_INACTIVE; | ||
2293 | } | ||
2289 | if (vc->n_runnable > 0 && vc->runner == NULL) { | 2294 | if (vc->n_runnable > 0 && vc->runner == NULL) { |
2290 | /* make sure there's a candidate runner awake */ | 2295 | /* make sure there's a candidate runner awake */ |
2291 | vcpu = list_first_entry(&vc->runnable_threads, | 2296 | vcpu = list_first_entry(&vc->runnable_threads, |