diff options
author | Eric Auger <eric.auger@linaro.org> | 2015-09-25 23:41:14 +0200 |
---|---|---|
committer | Christoffer Dall <christoffer.dall@linaro.org> | 2015-10-22 23:01:45 +0200 |
commit | 3781528e3045e7c9cc7c4846e0f675b1f353655f (patch) | |
tree | f11a36b156eedf32dd4caa0ff5d7b6702d28e66d /arch/arm64/include/asm/kvm_host.h | |
parent | 75755c6d02df9e9b959b3066c12de5494907e3d9 (diff) | |
download | op-kernel-dev-3781528e3045e7c9cc7c4846e0f675b1f353655f.zip op-kernel-dev-3781528e3045e7c9cc7c4846e0f675b1f353655f.tar.gz |
KVM: arm/arm64: rename pause into power_off
The kvm_vcpu_arch pause field is renamed into power_off to prepare
for the introduction of a new pause field. Also vcpu_pause is renamed
into vcpu_sleep since we will sleep until both power_off and pause are
false.
Signed-off-by: Eric Auger <eric.auger@linaro.org>
Reviewed-by: Christoffer Dall <christoffer.dall@linaro.org>
Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
Diffstat (limited to 'arch/arm64/include/asm/kvm_host.h')
-rw-r--r-- | arch/arm64/include/asm/kvm_host.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/include/asm/kvm_host.h b/arch/arm64/include/asm/kvm_host.h index ed03968..4b4157b 100644 --- a/arch/arm64/include/asm/kvm_host.h +++ b/arch/arm64/include/asm/kvm_host.h @@ -149,8 +149,8 @@ struct kvm_vcpu_arch { u32 mdscr_el1; } guest_debug_preserved; - /* Don't run the guest */ - bool pause; + /* vcpu power-off state */ + bool power_off; /* IO related fields */ struct kvm_decode mmio_decode; |