From: Eduardo Habkost <ehabkost@redhat.com>
To: Igor Mammedov <imammedo@redhat.com>
Cc: qemu-devel@nongnu.org, kraxel@redhat.com,
liuxiaojian6@huawei.com, mst@redhat.com, rkrcmar@redhat.com,
peterx@redhat.com, kevin@koconnor.net, pbonzini@redhat.com,
lersek@redhat.com, chao.gao@intel.com
Subject: Re: [Qemu-devel] [PATCH v3 09/13] pc: kvm_apic: pass APIC ID depending on xAPIC/x2APIC mode
Date: Mon, 17 Oct 2016 19:51:12 -0200 [thread overview]
Message-ID: <20161017215112.GF3275@thinpad.lan.raisama.net> (raw)
In-Reply-To: <1476352367-69400-10-git-send-email-imammedo@redhat.com>
On Thu, Oct 13, 2016 at 11:52:43AM +0200, Igor Mammedov wrote:
> Signed-off-by: Igor Mammedov <imammedo@redhat.com>
> ---
> v4:
> - drop kvm_has_x2apic_api() and reuse kvm_enable_x2apic() instead
> ---
> hw/i386/kvm/apic.c | 12 ++++++++++--
> 1 file changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/hw/i386/kvm/apic.c b/hw/i386/kvm/apic.c
> index be55102..9a7dd03 100644
> --- a/hw/i386/kvm/apic.c
> +++ b/hw/i386/kvm/apic.c
> @@ -34,7 +34,11 @@ static void kvm_put_apic_state(APICCommonState *s, struct kvm_lapic_state *kapic
> int i;
>
> memset(kapic, 0, sizeof(*kapic));
> - kvm_apic_set_reg(kapic, 0x2, s->id << 24);
> + if (kvm_enable_x2apic() && s->apicbase & MSR_IA32_APICBASE_EXTD) {
This is going to enable x2apic unconditionally (not just check if
x2apic was enabled). Is this really what you want to do?
> + kvm_apic_set_reg(kapic, 0x2, s->initial_apic_id);
> + } else {
> + kvm_apic_set_reg(kapic, 0x2, s->id << 24);
> + }
> kvm_apic_set_reg(kapic, 0x8, s->tpr);
> kvm_apic_set_reg(kapic, 0xd, s->log_dest << 24);
> kvm_apic_set_reg(kapic, 0xe, s->dest_mode << 28 | 0x0fffffff);
> @@ -59,7 +63,11 @@ void kvm_get_apic_state(DeviceState *dev, struct kvm_lapic_state *kapic)
> APICCommonState *s = APIC_COMMON(dev);
> int i, v;
>
> - s->id = kvm_apic_get_reg(kapic, 0x2) >> 24;
> + if (kvm_enable_x2apic() && s->apicbase & MSR_IA32_APICBASE_EXTD) {
> + assert(kvm_apic_get_reg(kapic, 0x2) == s->initial_apic_id);
> + } else {
> + s->id = kvm_apic_get_reg(kapic, 0x2) >> 24;
> + }
> s->tpr = kvm_apic_get_reg(kapic, 0x8);
> s->arb_id = kvm_apic_get_reg(kapic, 0x9);
> s->log_dest = kvm_apic_get_reg(kapic, 0xd) >> 24;
> --
> 2.7.4
>
--
Eduardo
next prev parent reply other threads:[~2016-10-17 21:51 UTC|newest]
Thread overview: 68+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-13 9:52 [Qemu-devel] [PATCH v3 00/13] pc: q35: x2APIC support in kvm_apic mode Igor Mammedov
2016-10-13 9:52 ` [Qemu-devel] [PATCH v3 01/13] pc: acpi: x2APIC support for MADT table Igor Mammedov
2016-10-18 12:47 ` Eduardo Habkost
2016-10-18 13:00 ` Igor Mammedov
2016-10-18 13:05 ` Eduardo Habkost
2016-10-18 13:42 ` Igor Mammedov
2016-10-13 9:52 ` [Qemu-devel] [PATCH v3 02/13] pc: acpi: x2APIC support for SRAT table Igor Mammedov
2016-10-18 13:07 ` Eduardo Habkost
2016-10-18 13:47 ` Igor Mammedov
2016-10-13 9:52 ` [Qemu-devel] [PATCH v3 03/13] acpi: cphp: support x2APIC entry in cpu._MAT Igor Mammedov
2016-10-18 13:34 ` Eduardo Habkost
2016-10-18 13:46 ` Igor Mammedov
2016-10-18 13:47 ` Eduardo Habkost
2016-10-18 14:02 ` Igor Mammedov
2016-10-13 9:52 ` [Qemu-devel] [PATCH v3 04/13] acpi: cphp: force switch to modern cpu hotplug if APIC ID > 254 Igor Mammedov
2016-10-18 13:38 ` Eduardo Habkost
2016-10-18 14:34 ` Igor Mammedov
2016-10-18 15:05 ` Eduardo Habkost
2016-10-18 15:23 ` Igor Mammedov
2016-10-18 16:37 ` Eduardo Habkost
2016-10-19 10:35 ` Igor Mammedov
2016-10-13 9:52 ` [Qemu-devel] [PATCH v3 05/13] pc: leave max apic_id_limit only in legacy cpu hotplug code Igor Mammedov
2016-10-17 21:44 ` Eduardo Habkost
2016-10-18 9:02 ` Igor Mammedov
2016-10-18 10:31 ` Eduardo Habkost
2016-10-18 11:37 ` [Qemu-devel] [PATCH v4 " Igor Mammedov
2016-10-18 12:01 ` Eduardo Habkost
2016-10-18 9:12 ` [Qemu-devel] [PATCH v3 " Igor Mammedov
2016-10-18 10:39 ` Eduardo Habkost
2016-10-18 12:10 ` Igor Mammedov
2016-10-13 9:52 ` [Qemu-devel] [PATCH v3 06/13] pc: apic_common: extend APIC ID property to 32bit Igor Mammedov
2016-10-18 10:56 ` Eduardo Habkost
2016-10-18 12:36 ` Igor Mammedov
2016-10-18 12:59 ` Eduardo Habkost
2016-10-18 14:01 ` Igor Mammedov
2016-10-18 14:14 ` Eduardo Habkost
2016-10-18 14:38 ` Igor Mammedov
2016-10-13 9:52 ` [Qemu-devel] [PATCH v3 07/13] pc: apic_common: restore APIC ID to initial ID on reset Igor Mammedov
2016-10-13 9:52 ` [Qemu-devel] [PATCH v3 08/13] pc: apic_common: reset APIC ID to initial ID when switching into x2APIC mode Igor Mammedov
2016-10-13 14:11 ` Radim Krčmář
2016-10-13 9:52 ` [Qemu-devel] [PATCH v3 09/13] pc: kvm_apic: pass APIC ID depending on xAPIC/x2APIC mode Igor Mammedov
2016-10-13 14:08 ` Radim Krčmář
2016-10-14 11:21 ` [Qemu-devel] [PATCH v4 " Igor Mammedov
2016-10-17 12:35 ` Radim Krčmář
2016-10-18 14:56 ` Eduardo Habkost
2016-10-18 16:26 ` Radim Krčmář
2016-10-18 18:04 ` Eduardo Habkost
2016-10-17 21:51 ` Eduardo Habkost [this message]
2016-10-18 7:17 ` [Qemu-devel] [PATCH v3 " Igor Mammedov
2016-10-18 10:40 ` Eduardo Habkost
2016-10-13 9:52 ` [Qemu-devel] [PATCH v3 10/13] pc: clarify FW_CFG_MAX_CPUS usage comment Igor Mammedov
2016-10-13 9:52 ` [Qemu-devel] [PATCH v3 11/13] increase MAX_CPUMASK_BITS from 255 to 288 Igor Mammedov
2016-10-13 13:01 ` Andrew Jones
2016-10-13 9:52 ` [Qemu-devel] [PATCH v3 12/13] pc: add 'etc/boot-cpus' fw_cfg file for machine with more than 255 CPUs Igor Mammedov
2016-10-13 9:52 ` [Qemu-devel] [PATCH v3 13/13] pc: require IRQ remapping and EIM if there could be x2APIC CPUs Igor Mammedov
2016-10-13 13:56 ` Radim Krčmář
2016-10-14 11:25 ` [Qemu-devel] [PATCH v4 " Igor Mammedov
2016-10-18 11:27 ` Eduardo Habkost
2016-10-18 12:44 ` Igor Mammedov
2016-10-18 12:55 ` Eduardo Habkost
2016-10-18 14:39 ` Igor Mammedov
2016-10-13 10:01 ` [Qemu-devel] [PATCH v3 00/13] pc: q35: x2APIC support in kvm_apic mode Paolo Bonzini
2016-10-13 10:15 ` Igor Mammedov
2016-10-13 10:28 ` Gerd Hoffmann
2016-10-13 13:24 ` [Qemu-devel] [PATCH v3 14/13] pc: q35: bump max_cpus to 288 Igor Mammedov
2016-10-13 13:53 ` Radim Krčmář
2016-10-14 4:05 ` [Qemu-devel] [PATCH v3 00/13] pc: q35: x2APIC support in kvm_apic mode no-reply
2016-10-14 7:59 ` Igor Mammedov
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=20161017215112.GF3275@thinpad.lan.raisama.net \
--to=ehabkost@redhat.com \
--cc=chao.gao@intel.com \
--cc=imammedo@redhat.com \
--cc=kevin@koconnor.net \
--cc=kraxel@redhat.com \
--cc=lersek@redhat.com \
--cc=liuxiaojian6@huawei.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=rkrcmar@redhat.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).