All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jan Kiszka <jan.kiszka@web.de>
To: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: "kvm@vger.kernel.org" <kvm@vger.kernel.org>,
	Avi Kivity <avi@redhat.com>,
	"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>,
	Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Subject: Re: [PATCH 1/1 V4] qemu-kvm: fix improper nmi emulation
Date: Fri, 14 Oct 2011 10:31:18 +0200	[thread overview]
Message-ID: <4E97F356.7040700@web.de> (raw)
In-Reply-To: <4E97E829.5040603@cn.fujitsu.com>

[-- Attachment #1: Type: text/plain, Size: 4287 bytes --]

On 2011-10-14 09:43, Lai Jiangshan wrote:
> On 10/14/2011 02:49 PM, Jan Kiszka wrote:
>> On 2011-10-14 08:36, Lai Jiangshan wrote:
>>> On 10/14/2011 01:53 PM, Jan Kiszka wrote:
>>>> On 2011-10-14 02:53, Lai Jiangshan wrote:
>>>>>
>>>>>>
>>>>>> As explained in some other mail, we could then emulate the missing
>>>>>> kernel feature by reading out the current in-kernel APIC state, testing
>>>>>> if LINT1 is unmasked, and then delivering the NMI directly.
>>>>>>
>>>>>
>>>>> Only the thread of the VCPU can safely get the in-kernel LAPIC states,
>>>>> so this approach will cause some troubles.
>>>>
>>>> run_on_cpu() can help.
>>>>
>>>> Jan
>>>>
>>>
>>> Ah, I forgot it, Thanks.
>>>
>>> From: Lai Jiangshan <laijs@cn.fujitsu.com>
>>>
>>> Currently, NMI interrupt is blindly sent to all the vCPUs when NMI
>>> button event happens. This doesn't properly emulate real hardware on
>>> which NMI button event triggers LINT1. Because of this, NMI is sent to
>>> the processor even when LINT1 is maskied in LVT. For example, this
>>> causes the problem that kdump initiated by NMI sometimes doesn't work
>>> on KVM, because kdump assumes NMI is masked on CPUs other than CPU0.
>>>
>>> With this patch, inject-nmi request is handled as follows.
>>>
>>> - When in-kernel irqchip is disabled, deliver LINT1 instead of NMI
>>>   interrupt.
>>> - When in-kernel irqchip is enabled, get the in-kernel LAPIC states
>>>   and test the APIC_LVT_MASKED, if LINT1 is unmasked, and then
>>>   delivering the NMI directly. (Suggested by Jan Kiszka)
>>>
>>> Changed from old version:
>>>   re-implement it by the Jan's suggestion.
>>>
>>> Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
>>> Reported-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
>>> ---
>>>  hw/apic.c |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
>>>  hw/apic.h |    1 +
>>>  monitor.c |    6 +++++-
>>>  3 files changed, 54 insertions(+), 1 deletions(-)
>>> diff --git a/hw/apic.c b/hw/apic.c
>>> index 69d6ac5..9a40129 100644
>>> --- a/hw/apic.c
>>> +++ b/hw/apic.c
>>> @@ -205,6 +205,54 @@ void apic_deliver_pic_intr(DeviceState *d, int level)
>>>      }
>>>  }
>>>  
>>> +#ifdef KVM_CAP_IRQCHIP
>>
>> Again, this is always defined on x86 thus pointless to test.
>>
>>> +static inline uint32_t kapic_reg(struct kvm_lapic_state *kapic, int reg_id);
>>> +
>>> +struct kvm_get_remote_lapic_params {
>>> +    CPUState *env;
>>> +    struct kvm_lapic_state klapic;
>>> +};
>>> +
>>> +static void kvm_get_remote_lapic(void *p)
>>> +{
>>> +    struct kvm_get_remote_lapic_params *params = p;
>>> +
>>> +    kvm_get_lapic(params->env, &params->klapic);
>>
>> When you already interrupted that vcpu, why not inject from here? Avoids
>> one further ping-pong round.
> 
> get_remote_lapic and inject nmi are two different things,
> so I don't inject nmi from here. I didn't notice this ping-pond overhead.
> Thank you.

Actually, it is not performance-critical. But there is a race between
obtaining the APIC state and testing for the NMI injection path. So it's
better to define an on-vcpu LINT1 NMI injection service.

> 
>>
>>> +}
>>> +
>>> +void apic_deliver_nmi(DeviceState *d)
>>> +{
>>> +    APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
>>> +
>>> +    if (kvm_irqchip_in_kernel()) {
>>> +        struct kvm_get_remote_lapic_params p = {.env = s->cpu_env,};
>>> +        uint32_t lvt;
>>> +
>>> +        run_on_cpu(s->cpu_env, kvm_get_remote_lapic, &p);
>>> +        lvt = kapic_reg(&p.klapic, 0x32 + APIC_LVT_LINT1);
>>> +
>>> +        if (lvt & APIC_LVT_MASKED) {
>>> +            return;
>>> +        }
>>> +
>>> +        if (((lvt >> 8) & 7) != APIC_DM_NMI) {
>>> +            return;
>>> +        }
>>> +
>>> +        cpu_interrupt(s->cpu_env, CPU_INTERRUPT_NMI);
>>
>> Err, aren't you introducing KVM_CAP_LAPIC_NMI that allows to test if
>> this workaround is needed? Oh, your latest kernel patch is missing this
>> again - requires fixing as well.
>>
> 
> 
> Kernel site patch is dropped with this v4 patch.
> 
> Did you mean you want KVM_CAP_SET_LINT1 + KVM_SET_LINT1 patches?
> I have made them.

OK, so this is going to be applied on top? Then I take this remark back.

Jan


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 262 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: Jan Kiszka <jan.kiszka@web.de>
To: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: "kvm@vger.kernel.org" <kvm@vger.kernel.org>,
	Avi Kivity <avi@redhat.com>,
	"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>,
	Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Subject: Re: [Qemu-devel] [PATCH 1/1 V4] qemu-kvm: fix improper nmi emulation
Date: Fri, 14 Oct 2011 10:31:18 +0200	[thread overview]
Message-ID: <4E97F356.7040700@web.de> (raw)
In-Reply-To: <4E97E829.5040603@cn.fujitsu.com>

[-- Attachment #1: Type: text/plain, Size: 4287 bytes --]

On 2011-10-14 09:43, Lai Jiangshan wrote:
> On 10/14/2011 02:49 PM, Jan Kiszka wrote:
>> On 2011-10-14 08:36, Lai Jiangshan wrote:
>>> On 10/14/2011 01:53 PM, Jan Kiszka wrote:
>>>> On 2011-10-14 02:53, Lai Jiangshan wrote:
>>>>>
>>>>>>
>>>>>> As explained in some other mail, we could then emulate the missing
>>>>>> kernel feature by reading out the current in-kernel APIC state, testing
>>>>>> if LINT1 is unmasked, and then delivering the NMI directly.
>>>>>>
>>>>>
>>>>> Only the thread of the VCPU can safely get the in-kernel LAPIC states,
>>>>> so this approach will cause some troubles.
>>>>
>>>> run_on_cpu() can help.
>>>>
>>>> Jan
>>>>
>>>
>>> Ah, I forgot it, Thanks.
>>>
>>> From: Lai Jiangshan <laijs@cn.fujitsu.com>
>>>
>>> Currently, NMI interrupt is blindly sent to all the vCPUs when NMI
>>> button event happens. This doesn't properly emulate real hardware on
>>> which NMI button event triggers LINT1. Because of this, NMI is sent to
>>> the processor even when LINT1 is maskied in LVT. For example, this
>>> causes the problem that kdump initiated by NMI sometimes doesn't work
>>> on KVM, because kdump assumes NMI is masked on CPUs other than CPU0.
>>>
>>> With this patch, inject-nmi request is handled as follows.
>>>
>>> - When in-kernel irqchip is disabled, deliver LINT1 instead of NMI
>>>   interrupt.
>>> - When in-kernel irqchip is enabled, get the in-kernel LAPIC states
>>>   and test the APIC_LVT_MASKED, if LINT1 is unmasked, and then
>>>   delivering the NMI directly. (Suggested by Jan Kiszka)
>>>
>>> Changed from old version:
>>>   re-implement it by the Jan's suggestion.
>>>
>>> Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
>>> Reported-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
>>> ---
>>>  hw/apic.c |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
>>>  hw/apic.h |    1 +
>>>  monitor.c |    6 +++++-
>>>  3 files changed, 54 insertions(+), 1 deletions(-)
>>> diff --git a/hw/apic.c b/hw/apic.c
>>> index 69d6ac5..9a40129 100644
>>> --- a/hw/apic.c
>>> +++ b/hw/apic.c
>>> @@ -205,6 +205,54 @@ void apic_deliver_pic_intr(DeviceState *d, int level)
>>>      }
>>>  }
>>>  
>>> +#ifdef KVM_CAP_IRQCHIP
>>
>> Again, this is always defined on x86 thus pointless to test.
>>
>>> +static inline uint32_t kapic_reg(struct kvm_lapic_state *kapic, int reg_id);
>>> +
>>> +struct kvm_get_remote_lapic_params {
>>> +    CPUState *env;
>>> +    struct kvm_lapic_state klapic;
>>> +};
>>> +
>>> +static void kvm_get_remote_lapic(void *p)
>>> +{
>>> +    struct kvm_get_remote_lapic_params *params = p;
>>> +
>>> +    kvm_get_lapic(params->env, &params->klapic);
>>
>> When you already interrupted that vcpu, why not inject from here? Avoids
>> one further ping-pong round.
> 
> get_remote_lapic and inject nmi are two different things,
> so I don't inject nmi from here. I didn't notice this ping-pond overhead.
> Thank you.

Actually, it is not performance-critical. But there is a race between
obtaining the APIC state and testing for the NMI injection path. So it's
better to define an on-vcpu LINT1 NMI injection service.

> 
>>
>>> +}
>>> +
>>> +void apic_deliver_nmi(DeviceState *d)
>>> +{
>>> +    APICState *s = DO_UPCAST(APICState, busdev.qdev, d);
>>> +
>>> +    if (kvm_irqchip_in_kernel()) {
>>> +        struct kvm_get_remote_lapic_params p = {.env = s->cpu_env,};
>>> +        uint32_t lvt;
>>> +
>>> +        run_on_cpu(s->cpu_env, kvm_get_remote_lapic, &p);
>>> +        lvt = kapic_reg(&p.klapic, 0x32 + APIC_LVT_LINT1);
>>> +
>>> +        if (lvt & APIC_LVT_MASKED) {
>>> +            return;
>>> +        }
>>> +
>>> +        if (((lvt >> 8) & 7) != APIC_DM_NMI) {
>>> +            return;
>>> +        }
>>> +
>>> +        cpu_interrupt(s->cpu_env, CPU_INTERRUPT_NMI);
>>
>> Err, aren't you introducing KVM_CAP_LAPIC_NMI that allows to test if
>> this workaround is needed? Oh, your latest kernel patch is missing this
>> again - requires fixing as well.
>>
> 
> 
> Kernel site patch is dropped with this v4 patch.
> 
> Did you mean you want KVM_CAP_SET_LINT1 + KVM_SET_LINT1 patches?
> I have made them.

OK, so this is going to be applied on top? Then I take this remark back.

Jan


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 262 bytes --]

  reply	other threads:[~2011-10-14  8:31 UTC|newest]

Thread overview: 138+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20110913093835.GB4265@localhost.localdomain>
     [not found] ` <20110914093441.e2bb305c.kamezawa.hiroyu@jp.fujitsu.com>
     [not found]   ` <4E705BC3.5000508@cn.fujitsu.com>
     [not found]     ` <20110915164704.9cacd407.kamezawa.hiroyu@jp.fujitsu.com>
     [not found]       ` <4E71B28F.7030201@cn.fujitsu.com>
     [not found]         ` <4E72F3BA.2000603@jp.fujitsu.com>
     [not found]           ` <4E73200A.7040908@jp.fujitsu.com>
     [not found]             ` <4E76C6AA.9080403@cn.fujitsu.com>
2011-09-22  9:50               ` [PATCH] qemu: Fix inject-nmi Lai Jiangshan
2011-09-22  9:50                 ` [Qemu-devel] " Lai Jiangshan
2011-09-22 14:51                 ` Jan Kiszka
2011-09-22 14:51                   ` [Qemu-devel] " Jan Kiszka
2011-09-23  9:31                   ` Lai Jiangshan
2011-09-23  9:31                     ` Lai Jiangshan
2011-09-23  9:35                     ` Jan Kiszka
2011-09-23  9:35                       ` Jan Kiszka
2011-09-25 14:07                     ` Avi Kivity
2011-09-25 14:07                       ` [Qemu-devel] " Avi Kivity
2011-09-25 17:22                       ` Jan Kiszka
2011-09-25 17:22                         ` [Qemu-devel] " Jan Kiszka
2011-09-26  8:21                         ` Avi Kivity
2011-09-26  8:21                           ` [Qemu-devel] " Avi Kivity
2011-10-10  6:06                           ` Lai Jiangshan
2011-10-10  6:06                             ` [Qemu-devel] " Lai Jiangshan
2011-10-10  6:06                           ` [PATCH] kernel/kvm: fix improper nmi emulation (was: Re: [Qemu-devel] [PATCH] qemu: Fix inject-nmi) Lai Jiangshan
2011-10-10  6:06                             ` [Qemu-devel] [PATCH] kernel/kvm: fix improper nmi emulation (was: " Lai Jiangshan
2011-10-10  6:40                             ` [PATCH] kernel/kvm: fix improper nmi emulation Jan Kiszka
2011-10-10  6:40                               ` [Qemu-devel] " Jan Kiszka
2011-10-10 10:26                             ` Avi Kivity
2011-10-10 10:26                               ` [Qemu-devel] " Avi Kivity
2011-10-11 17:00                               ` [PATCH 1/1 V2] " Lai Jiangshan
2011-10-11 17:00                                 ` [Qemu-devel] " Lai Jiangshan
2011-10-11 18:06                                 ` Jan Kiszka
2011-10-11 18:06                                   ` [Qemu-devel] " Jan Kiszka
2011-10-14  0:54                                   ` [PATCH 1/1 V3] " Lai Jiangshan
2011-10-14  0:54                                     ` [Qemu-devel] " Lai Jiangshan
2011-10-16  8:54                                     ` Avi Kivity
2011-10-16  8:54                                       ` [Qemu-devel] " Avi Kivity
2011-10-16  9:05                                       ` Jan Kiszka
2011-10-16  9:05                                         ` [Qemu-devel] " Jan Kiszka
2011-10-16  9:28                                         ` Avi Kivity
2011-10-16  9:28                                           ` [Qemu-devel] " Avi Kivity
2011-10-12  7:02                                 ` [PATCH 1/1 V2] " Kenji Kaneshige
2011-10-12  7:02                                   ` [Qemu-devel] " Kenji Kaneshige
2011-10-12  7:01                               ` [PATCH] " Kenji Kaneshige
2011-10-12  7:01                                 ` [Qemu-devel] " Kenji Kaneshige
2011-10-10  6:06                           ` [PATCH] qemu-kvm: fix improper nmi emulation (was: Re: [Qemu-devel] [PATCH] qemu: Fix inject-nmi) Lai Jiangshan
2011-10-10  6:06                             ` [Qemu-devel] [PATCH] qemu-kvm: fix improper nmi emulation (was: " Lai Jiangshan
2011-10-10  6:49                             ` [PATCH] qemu-kvm: fix improper nmi emulation Jan Kiszka
2011-10-10  6:49                               ` [Qemu-devel] " Jan Kiszka
2011-10-10  9:47                               ` Andreas Färber
2011-10-10  9:47                                 ` [Qemu-devel] " Andreas Färber
2011-10-11 17:03                               ` [PATCH 1/2 V2] qemu-kvm: Synchronize kernel headers Lai Jiangshan
2011-10-11 17:03                                 ` [Qemu-devel] " Lai Jiangshan
2011-10-11 17:03                               ` [PATCH 2/2 V2] qemu-kvm: fix improper nmi emulation Lai Jiangshan
2011-10-11 17:03                                 ` [Qemu-devel] " Lai Jiangshan
2011-10-11 18:17                                 ` Jan Kiszka
2011-10-11 18:17                                   ` [Qemu-devel] " Jan Kiszka
2011-10-14  0:53                                   ` Lai Jiangshan
2011-10-14  0:53                                     ` Lai Jiangshan
2011-10-14  5:53                                     ` Jan Kiszka
2011-10-14  5:53                                       ` Jan Kiszka
2011-10-14  6:36                                       ` [PATCH 1/1 V4] " Lai Jiangshan
2011-10-14  6:36                                         ` [Qemu-devel] " Lai Jiangshan
2011-10-14  6:49                                         ` Jan Kiszka
2011-10-14  6:49                                           ` [Qemu-devel] " Jan Kiszka
2011-10-14  7:43                                           ` Lai Jiangshan
2011-10-14  7:43                                             ` [Qemu-devel] " Lai Jiangshan
2011-10-14  8:31                                             ` Jan Kiszka [this message]
2011-10-14  8:31                                               ` Jan Kiszka
2011-10-14  9:03                                           ` [PATCH 1/1 V5] kernel/kvm: introduce KVM_SET_LINT1 and " Lai Jiangshan
2011-10-14  9:03                                             ` [Qemu-devel] " Lai Jiangshan
2011-10-14  9:07                                             ` Jan Kiszka
2011-10-14  9:07                                               ` [Qemu-devel] " Jan Kiszka
2011-10-14  9:27                                               ` Lai Jiangshan
2011-10-14  9:27                                                 ` Lai Jiangshan
2011-10-14  9:32                                                 ` Jan Kiszka
2011-10-14  9:32                                                   ` Jan Kiszka
2011-10-16  9:39                                             ` Avi Kivity
2011-10-16  9:39                                               ` [Qemu-devel] " Avi Kivity
2011-10-17  9:17                                               ` Lai Jiangshan
2011-10-17  9:17                                                 ` [Qemu-devel] " Lai Jiangshan
2011-10-17  9:54                                                 ` Avi Kivity
2011-10-17  9:54                                                   ` [Qemu-devel] " Avi Kivity
2011-10-17 10:21                                                   ` Jan Kiszka
2011-10-17 10:21                                                     ` [Qemu-devel] " Jan Kiszka
2011-10-17  9:40                                               ` Lai Jiangshan
2011-10-17  9:40                                                 ` [Qemu-devel] " Lai Jiangshan
2011-10-17  9:49                                                 ` Avi Kivity
2011-10-17  9:49                                                   ` [Qemu-devel] " Avi Kivity
2011-10-17 16:00                                                   ` [PATCH 1/1 V6] qemu-kvm: " Lai Jiangshan
2011-10-17 16:00                                                     ` [Qemu-devel] " Lai Jiangshan
2011-10-18 19:41                                                     ` Jan Kiszka
2011-10-18 19:41                                                       ` [Qemu-devel] " Jan Kiszka
2011-10-19  6:33                                                       ` Lai Jiangshan
2011-10-19  6:33                                                         ` [Qemu-devel] " Lai Jiangshan
2011-10-19 10:57                                                         ` Jan Kiszka
2011-10-19 10:57                                                           ` [Qemu-devel] " Jan Kiszka
2011-10-19 15:21                                                           ` [PATCH 1/1 V6] qemu: " Lai Jiangshan
2011-10-19 15:21                                                             ` [Qemu-devel] " Lai Jiangshan
2011-10-19  9:29                                                       ` [PATCH 1/1 V6] qemu-kvm: " Avi Kivity
2011-10-19  9:29                                                         ` [Qemu-devel] " Avi Kivity
2011-10-19 15:32                                                         ` Lai Jiangshan
2011-10-19 15:32                                                           ` [Qemu-devel] " Lai Jiangshan
2011-12-07 10:29                                                     ` Avi Kivity
2011-12-07 10:29                                                       ` [Qemu-devel] " Avi Kivity
2011-12-08  9:42                                                       ` Jan Kiszka
2011-12-08  9:42                                                         ` [Qemu-devel] " Jan Kiszka
2011-12-08 10:20                                                         ` Jan Kiszka
2011-12-08 10:20                                                           ` [Qemu-devel] " Jan Kiszka
2011-10-14  9:03                                           ` [PATCH 1/2 V5] qemu-kvm: Synchronize kernel headers Lai Jiangshan
2011-10-14  9:03                                             ` [Qemu-devel] " Lai Jiangshan
2011-10-14  9:03                                           ` [PATCH 2/2 V5] qemu-kvm: fix improper nmi emulation Lai Jiangshan
2011-10-14  9:03                                             ` [Qemu-devel] " Lai Jiangshan
2011-10-14  9:22                                             ` Jan Kiszka
2011-10-14  9:22                                               ` [Qemu-devel] " Jan Kiszka
2011-10-14  9:51                                           ` [PATCH 1/1 V5 tuning] kernel/kvm: introduce KVM_SET_LINT1 and " Lai Jiangshan
2011-10-14  9:51                                             ` [Qemu-devel] " Lai Jiangshan
2011-10-14 11:59                                             ` Sasha Levin
2011-10-14 11:59                                               ` [Qemu-devel] " Sasha Levin
2011-10-14 12:07                                               ` Jan Kiszka
2011-10-14 12:07                                                 ` Jan Kiszka
2011-10-16 15:01                                                 ` Lai Jiangshan
2011-10-16 15:01                                                   ` Lai Jiangshan
2011-10-14  9:51                                           ` [PATCH 1/2 V5 tuning] qemu-kvm: Synchronize kernel headers Lai Jiangshan
2011-10-14  9:51                                             ` [Qemu-devel] " Lai Jiangshan
2011-10-14  0:54                                   ` [PATCH 1/1 V3] qemu-kvm: fix improper nmi emulation Lai Jiangshan
2011-10-14  0:54                                     ` [Qemu-devel] " Lai Jiangshan
2011-10-10  6:06                           ` [PATCH 1/2] seabios: Add Local APIC NMI Structure to ACPI MADT (was: Re: [Qemu-devel] [PATCH] qemu: Fix inject-nmi) Lai Jiangshan
2011-10-10  6:06                             ` [Qemu-devel] [PATCH 1/2] seabios: Add Local APIC NMI Structure to ACPI MADT (was: " Lai Jiangshan
2011-10-28 12:08                             ` [PATCH 1/2] seabios: Add Local APIC NMI Structure to ACPI MADT Kenji Kaneshige
2011-10-28 12:08                               ` [Qemu-devel] " Kenji Kaneshige
2011-10-28 12:19                               ` Gleb Natapov
2011-10-28 12:19                                 ` [Qemu-devel] " Gleb Natapov
2011-10-28 12:48                               ` Jun Koi
2011-10-28 12:48                                 ` Jun Koi
2011-10-31  8:00                                 ` Kenji Kaneshige
2011-10-31  8:00                                   ` Kenji Kaneshige
2011-10-30 14:44                             ` Avi Kivity
2011-10-30 14:44                               ` [Qemu-devel] " Avi Kivity
2011-10-30 14:44                               ` Avi Kivity
2011-10-30 14:44                                 ` [Qemu-devel] " Avi Kivity
2011-10-10  6:06                           ` [PATCH 2/2] seabios: fix mptable nmi entry (was: Re: [Qemu-devel] [PATCH] qemu: Fix inject-nmi) Lai Jiangshan
2011-10-10  6:06                             ` [Qemu-devel] [PATCH 2/2] seabios: fix mptable nmi entry (was: " Lai Jiangshan
2011-10-30 17:52                             ` [PATCH 2/2] seabios: fix mptable nmi entry (was: Re: [Qemu-devel] " Kevin O'Connor
2011-10-30 17:52                               ` [Qemu-devel] [PATCH 2/2] seabios: fix mptable nmi entry (was: " Kevin O'Connor

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4E97F356.7040700@web.de \
    --to=jan.kiszka@web.de \
    --cc=avi@redhat.com \
    --cc=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=kaneshige.kenji@jp.fujitsu.com \
    --cc=kvm@vger.kernel.org \
    --cc=laijs@cn.fujitsu.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.