qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 1/7] KVM: i386: Use symbolic constant for #DB/#B


From: Liran Alon
Subject: Re: [Qemu-devel] [PATCH 1/7] KVM: i386: Use symbolic constant for #DB/#BP exception constants
Date: Sat, 15 Jun 2019 03:46:10 +0300


> On 15 Jun 2019, at 3:42, Paolo Bonzini <address@hidden> wrote:
> 
> From: Liran Alon <address@hidden>
> 
> Reviewed-by: Nikita Leshenko <address@hidden>
> Signed-off-by: Liran Alon <address@hidden>
> Signed-off-by: Paolo Bonzini <address@hidden>
> ---
> target/i386/kvm.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/target/i386/kvm.c b/target/i386/kvm.c
> index 3b29ce5c0d..c8d8196e71 100644
> --- a/target/i386/kvm.c
> +++ b/target/i386/kvm.c
> @@ -2994,9 +2994,9 @@ static int kvm_guest_debug_workarounds(X86CPU *cpu)
>     unsigned long reinject_trap = 0;
> 
>     if (!kvm_has_vcpu_events()) {
> -        if (env->exception_injected == 1) {
> +        if (env->exception_injected == EXCP01_DB) {
>             reinject_trap = KVM_GUESTDBG_INJECT_DB;
> -        } else if (env->exception_injected == 3) {
> +        } else if (env->exception_injected == EXCP03_INT3) {
>             reinject_trap = KVM_GUESTDBG_INJECT_BP;
>         }
>         env->exception_injected = -1;
> @@ -3508,7 +3508,7 @@ static int kvm_handle_debug(X86CPU *cpu,
>     int ret = 0;
>     int n;
> 
> -    if (arch_info->exception == 1) {
> +    if (arch_info->exception == EXCP01_DB) {
>         if (arch_info->dr6 & (1 << 14)) {

Note: In the patch-series I will submit, I also replaced this “1 << 14” with 
DR6_BS.

>             if (cs->singlestep_enabled) {
>                 ret = EXCP_DEBUG;
> -- 
> 2.21.0
> 
> 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]