From: "Daniel P. Berrange" <berrange@redhat.com>
To: Igor Mammedov <imammedo@redhat.com>
Cc: qemu-devel@nongnu.org, ehabkost@redhat.com,
liuxiaojian6@huawei.com, mst@redhat.com, rkrcmar@redhat.com,
peterx@redhat.com, kevin@koconnor.net, kraxel@redhat.com,
pbonzini@redhat.com, lersek@redhat.com, chao.gao@intel.com
Subject: Re: [Qemu-devel] [PATCH v4 00/13] pc: q35: x2APIC support in kvm_apic mode
Date: Wed, 19 Oct 2016 14:29:22 +0100 [thread overview]
Message-ID: <20161019132922.GW11194@redhat.com> (raw)
In-Reply-To: <1476878743-144953-1-git-send-email-imammedo@redhat.com>
On Wed, Oct 19, 2016 at 02:05:30PM +0200, Igor Mammedov wrote:
>
> Changes since v3:
> - fix endianness issues when filling MADT/SRAT entries (Eduardo)
> - squash "acpi: cphp: support x2APIC entry in cpu._MAT" into
> "pc: acpi: x2APIC support for MADT table and _MAT method" (Eduardo)
> - keep assert() as it doesn't affect x2APIC cpus in bochs_bios_init() (Eduardo)
> - restore kvm_has_x2apic_api() and use it to avoid side-effects
> of kvm_enable_x2apic(). x2APIC API will be enabled by iommu
> if it's present or not enabled at all. (Radim)
> - add intel iommu example to error message (Eduardo)
>
> Changes since v2:
> - rebase on top of EIM fixes
> - drop kvm_has_x2apic_ids() and reuse kvm_enable_x2apic()
> from Radim's EIM fixes
> - fix hang on reboot in BIOS due to not updated 'etc/boot-cpus' fwcfg file
> after CPU hotplug
> - drop not used anymore pc_present_cpus_count() and incrementally count
> present VCPUs as they are added/removed at (un)plug callbacks time
>
> Changes since v1:
> - rebase on top of 2.7
> - drop add 2.8 machine and linux headers update patches
> - drop numa related patches (will post separately as unrelated)
> - change default mc->maxcpus only for q35
>
> Changes since RFC:
> - use new KVM_CAP_X2APIC_API to detect x2APIC IDs support
> - rebase on top of 2.7-rc1, since many deps were merged
> - fix etc/boot-cpus to account for -device provided cpus
> - include not yet merged _PXM fix as prereq
> - add 2.8 machine type and bump up maxcpus count since it
>
> Series extends current CPU/kvm_apic/Q35 machine
> code to support x2APIC and upto 288 VCPUs when QEMU
> is used with KVM's lapic.
>
> Due to FW_CFG_MAX_CPUS (which is actually apic_id_limit)
> being limited to uint16_t, the max possible APIC ID is
> limitted to 2^16 with this series but that should
> be sufficient for bumping VCPUs number for quite a while.
Not a problem, just curiosity - 2^16 gives us 65536, so where
is the 288 limit coming from ?
Regards,
Daniel
--
|: http://berrange.com -o- http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org -o- http://virt-manager.org :|
|: http://entangle-photo.org -o- http://search.cpan.org/~danberr/ :|
next prev parent reply other threads:[~2016-10-19 13:29 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-19 12:05 [Qemu-devel] [PATCH v4 00/13] pc: q35: x2APIC support in kvm_apic mode Igor Mammedov
2016-10-19 12:05 ` [Qemu-devel] [PATCH v4 01/13] pc: acpi: x2APIC support for MADT table and _MAT method Igor Mammedov
2016-10-19 12:54 ` Eduardo Habkost
2016-10-19 12:05 ` [Qemu-devel] [PATCH v4 02/13] pc: acpi: x2APIC support for SRAT table Igor Mammedov
2016-10-19 12:54 ` Eduardo Habkost
2016-10-19 12:05 ` [Qemu-devel] [PATCH v4 03/13] acpi: cphp: force switch to modern cpu hotplug if APIC ID > 254 Igor Mammedov
2016-10-19 12:54 ` Eduardo Habkost
2016-10-19 12:05 ` [Qemu-devel] [PATCH v4 04/13] pc: leave max apic_id_limit only in legacy cpu hotplug code Igor Mammedov
2016-10-19 12:05 ` [Qemu-devel] [PATCH v4 05/13] pc: apic_common: extend APIC ID property to 32bit Igor Mammedov
2016-10-19 12:55 ` Eduardo Habkost
2016-10-19 12:05 ` [Qemu-devel] [PATCH v4 06/13] pc: apic_common: restore APIC ID to initial ID on reset Igor Mammedov
2016-10-19 12:56 ` Eduardo Habkost
2016-10-19 12:05 ` [Qemu-devel] [PATCH v4 07/13] pc: apic_common: reset APIC ID to initial ID when switching into x2APIC mode Igor Mammedov
2016-10-19 12:56 ` Eduardo Habkost
2016-10-19 12:05 ` [Qemu-devel] [PATCH v4 08/13] pc: kvm_apic: pass APIC ID depending on xAPIC/x2APIC mode Igor Mammedov
2016-10-19 12:05 ` [Qemu-devel] [PATCH v4 09/13] pc: clarify FW_CFG_MAX_CPUS usage comment Igor Mammedov
2016-10-19 12:58 ` Eduardo Habkost
2016-10-19 12:05 ` [Qemu-devel] [PATCH v4 10/13] increase MAX_CPUMASK_BITS from 255 to 288 Igor Mammedov
2016-10-19 13:16 ` Eduardo Habkost
2016-10-19 12:05 ` [Qemu-devel] [PATCH v4 11/13] pc: add 'etc/boot-cpus' fw_cfg file for machine with more than 255 CPUs Igor Mammedov
2016-10-19 13:15 ` Eduardo Habkost
2016-10-19 15:18 ` Igor Mammedov
2016-10-19 18:29 ` Eduardo Habkost
2016-10-20 11:27 ` Igor Mammedov
2016-10-20 12:27 ` Eduardo Habkost
2016-10-20 13:27 ` Igor Mammedov
2016-10-20 14:15 ` Eduardo Habkost
2016-10-20 14:42 ` Igor Mammedov
2016-10-20 14:49 ` Kevin O'Connor
2016-10-20 14:58 ` [Qemu-devel] [PATCH v5 " Igor Mammedov
2016-10-20 18:11 ` Eduardo Habkost
2016-10-20 18:51 ` [Qemu-devel] [PATCH] fixup! " Eduardo Habkost
2016-10-21 8:53 ` Igor Mammedov
2016-10-21 11:41 ` Eduardo Habkost
2016-10-27 22:08 ` Michael S. Tsirkin
2016-10-28 0:53 ` Eduardo Habkost
2016-10-19 12:05 ` [Qemu-devel] [PATCH v4 12/13] pc: require IRQ remapping and EIM if there could be x2APIC CPUs Igor Mammedov
2016-10-19 13:17 ` Eduardo Habkost
2016-10-19 12:05 ` [Qemu-devel] [PATCH v4 13/13] pc: q35: bump max_cpus to 288 Igor Mammedov
2016-10-19 13:19 ` Eduardo Habkost
2016-10-19 13:29 ` Daniel P. Berrange [this message]
2016-10-19 15:22 ` [Qemu-devel] [PATCH v4 00/13] pc: q35: x2APIC support in kvm_apic mode 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=20161019132922.GW11194@redhat.com \
--to=berrange@redhat.com \
--cc=chao.gao@intel.com \
--cc=ehabkost@redhat.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 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.