[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [qemu-upstream-unstable] xen: Implement hot_add_cpu hook.
commit 35bdc13b52197d7e9dcadd5af9621b6463290300 Author: Anthony PERARD <anthony.perard@xxxxxxxxxx> AuthorDate: Mon Jun 10 15:29:31 2013 +0100 Commit: Anthony PERARD <anthony.perard@xxxxxxxxxx> CommitDate: Mon Jun 17 12:35:38 2013 +0100 xen: Implement hot_add_cpu hook. Signed-off-by: Anthony PERARD <anthony.perard@xxxxxxxxxx> --- hw/acpi_piix4.c | 21 +++++++++++++++++++++ hw/pc_piix.c | 1 + sysemu.h | 2 ++ 3 files changed, 24 insertions(+), 0 deletions(-) diff --git a/hw/acpi_piix4.c b/hw/acpi_piix4.c index 56d7c2c..059b64f 100644 --- a/hw/acpi_piix4.c +++ b/hw/acpi_piix4.c @@ -662,6 +662,26 @@ static void piix4_cpu_hotplug_req(PIIX4PMState *s, int64_t cpu_id, pm_update_sci(s); } +static PIIX4PMState *piix4pm_state; +void piix4_cpu_hotplug_add(const int64_t cpu_id, Error **errp) +{ + CPUStatus *g = &piix4pm_state->gpe_cpu; + + if (cpu_id >= max_cpus) { + error_setg(errp, "Unable to add CPU: %" PRIi64 + ", max allowed: %d", cpu_id, max_cpus - 1); + return; + } + if (g->sts[cpu_id / 8] & (1 << (cpu_id % 8))) { + /* Already requested to be hotplug. */ + error_setg(errp, "Unable to add CPU: %" PRIi64 + ", it already exists", cpu_id); + return; + } + + piix4_cpu_hotplug_req(piix4pm_state, cpu_id, PLUG); +} + static void piix4_init_cpu_status(CPUState *cpu, void *data) { CPUStatus *g = (CPUStatus *)data; @@ -697,6 +717,7 @@ static void piix4_acpi_system_hot_add_init(PCIBus *bus, PIIX4PMState *s) PIIX4_PROC_LEN); memory_region_add_subregion(pci_address_space_io(&s->dev), PIIX4_PROC_BASE, &s->io_cpu); + piix4pm_state = s; } static void enable_device(PIIX4PMState *s, int slot) diff --git a/hw/pc_piix.c b/hw/pc_piix.c index aa3e7f4..7e12f5d 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -621,6 +621,7 @@ static QEMUMachine xenfv_machine = { .init = pc_xen_hvm_init, .max_cpus = HVM_MAX_VCPUS, .default_machine_opts = "accel=xen", + .hot_add_cpu = piix4_cpu_hotplug_add, }; #endif diff --git a/sysemu.h b/sysemu.h index f5ac664..b71f244 100644 --- a/sysemu.h +++ b/sysemu.h @@ -183,4 +183,6 @@ char *get_boot_devices_list(uint32_t *size); bool usb_enabled(bool default_usb); +void piix4_cpu_hotplug_add(const int64_t cpu_id, Error **errp); + #endif -- generated by git-patchbot for /home/xen/git/qemu-upstream-unstable.git _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |