diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2018-08-21 09:40:22 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2018-10-02 19:09:12 +0200 |
commit | f8dc4c645ec2956a6cd97e0ca0fdd4753181f735 (patch) | |
tree | 61d276e98694b11ab37b339b7b8d731437be3585 /target/i386/excp_helper.c | |
parent | 92d5f1a4147c3722b5e9a8bcfb7dc261b7a8b855 (diff) |
target/i386: rename HF_SVMI_MASK to HF_GUEST_MASK
This flag will be used for KVM's nested VMX migration; the HF_GUEST_MASK name
is already used in KVM, adopt it in QEMU as well.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/i386/excp_helper.c')
-rw-r--r-- | target/i386/excp_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/i386/excp_helper.c b/target/i386/excp_helper.c index 37a33d5ae0..49231f6b69 100644 --- a/target/i386/excp_helper.c +++ b/target/i386/excp_helper.c @@ -53,7 +53,7 @@ static int check_exception(CPUX86State *env, int intno, int *error_code, #if !defined(CONFIG_USER_ONLY) if (env->old_exception == EXCP08_DBLE) { - if (env->hflags & HF_SVMI_MASK) { + if (env->hflags & HF_GUEST_MASK) { cpu_vmexit(env, SVM_EXIT_SHUTDOWN, 0, retaddr); /* does not return */ } |