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>
This commit is contained in:
Eric Auger
2015-09-25 23:41:14 +02:00
committed by Christoffer Dall
parent 75755c6d02
commit 3781528e30
4 changed files with 19 additions and 19 deletions

View File

@@ -126,8 +126,8 @@ struct kvm_vcpu_arch {
* here.
*/
/* Don't run the guest on this vcpu */
bool pause;
/* vcpu power-off state */
bool power_off;
/* IO related fields */
struct kvm_decode mmio_decode;