qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 4/4] cpus: call the core nmi injection function


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [PATCH 4/4] cpus: call the core nmi injection function
Date: Fri, 20 May 2016 09:50:31 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.0


On 20/05/2016 00:15, Bandan Das wrote:
>  void qmp_inject_nmi(Error **errp)
>  {
> -#if defined(TARGET_I386)
> -    CPUState *cs;
> -
> -    CPU_FOREACH(cs) {
> -        X86CPU *cpu = X86_CPU(cs);
> -
> -        if (!cpu->apic_state) {
> -            cpu_interrupt(cs, CPU_INTERRUPT_NMI);
> -        } else {
> -            apic_deliver_nmi(cpu->apic_state);
> -        }
> -    }
> -#else
> -    nmi_monitor_handle(monitor_get_cpu_index(), errp);
> -#endif
> +    inject_nmi(errp);

This changes the first argument to nmi_monitor_handle in the !i386 case.
 It should just remove the #ifdef, which I think makes the third patch
unnecessary.  The first two patches are okay.

Paolo



reply via email to

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