Skip to content

Commit

Permalink
s390x/cpu: Allow hotplug of CPUs
Browse files Browse the repository at this point in the history
Implement cpu hotplug routine and add the machine hook.

Signed-off-by: Matthew Rosato <[email protected]>
Reviewed-by: David Hildenbrand <[email protected]>
Message-Id: <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
  • Loading branch information
Matthew Rosato authored and cohuck committed Mar 10, 2016
1 parent 96b1a8b commit a006b67
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
10 changes: 10 additions & 0 deletions hw/s390x/s390-virtio-ccw.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,15 @@ static HotplugHandler *s390_get_hotplug_handler(MachineState *machine,
return NULL;
}

static void s390_hot_add_cpu(const int64_t id, Error **errp)
{
MachineState *machine = MACHINE(qdev_get_machine());
Error *err = NULL;

s390x_new_cpu(machine->cpu_model, id, &err);
error_propagate(errp, err);
}

static void ccw_machine_class_init(ObjectClass *oc, void *data)
{
MachineClass *mc = MACHINE_CLASS(oc);
Expand All @@ -194,6 +203,7 @@ static void ccw_machine_class_init(ObjectClass *oc, void *data)

mc->init = ccw_init;
mc->reset = s390_machine_reset;
mc->hot_add_cpu = s390_hot_add_cpu;
mc->block_default_type = IF_VIRTIO;
mc->no_cdrom = 1;
mc->no_floppy = 1;
Expand Down
7 changes: 7 additions & 0 deletions target-s390x/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
#ifndef CONFIG_USER_ONLY
#include "sysemu/arch_init.h"
#include "sysemu/sysemu.h"
#include "hw/s390x/sclp.h"
#endif

#define CR0_RESET 0xE0UL
Expand Down Expand Up @@ -240,6 +241,12 @@ static void s390_cpu_realizefn(DeviceState *dev, Error **errp)

scc->parent_realize(dev, &err);

#if !defined(CONFIG_USER_ONLY)
if (dev->hotplugged) {
raise_irq_cpu_hotplug();
}
#endif

out:
error_propagate(errp, err);
}
Expand Down

0 comments on commit a006b67

Please sign in to comment.