Commit d745562c authored by Ian Campbell's avatar Ian Campbell Committed by Jeremy Fitzhardinge

xen: honour VCPU availability on boot

If a VM is booted with offline VCPUs then unplug them during boot. Determining
the availability of a VCPU requires access to XenStore which is not available
at the point smp_prepare_cpus() is called, therefore we bring up all VCPUS
initially and unplug the offline ones as soon as XenStore becomes available.
Signed-off-by: default avatarIan Campbell <ian.campbell@citrix.com>
parent 2b2a7334
...@@ -21,29 +21,41 @@ static void disable_hotplug_cpu(int cpu) ...@@ -21,29 +21,41 @@ static void disable_hotplug_cpu(int cpu)
set_cpu_present(cpu, false); set_cpu_present(cpu, false);
} }
static void vcpu_hotplug(unsigned int cpu) static int vcpu_online(unsigned int cpu)
{ {
int err; int err;
char dir[32], state[32]; char dir[32], state[32];
if (!cpu_possible(cpu))
return;
sprintf(dir, "cpu/%u", cpu); sprintf(dir, "cpu/%u", cpu);
err = xenbus_scanf(XBT_NIL, dir, "availability", "%s", state); err = xenbus_scanf(XBT_NIL, dir, "availability", "%s", state);
if (err != 1) { if (err != 1) {
printk(KERN_ERR "XENBUS: Unable to read cpu state\n"); printk(KERN_ERR "XENBUS: Unable to read cpu state\n");
return; return err;
} }
if (strcmp(state, "online") == 0) { if (strcmp(state, "online") == 0)
return 1;
else if (strcmp(state, "offline") == 0)
return 0;
printk(KERN_ERR "XENBUS: unknown state(%s) on CPU%d\n", state, cpu);
return -EINVAL;
}
static void vcpu_hotplug(unsigned int cpu)
{
if (!cpu_possible(cpu))
return;
switch (vcpu_online(cpu)) {
case 1:
enable_hotplug_cpu(cpu); enable_hotplug_cpu(cpu);
} else if (strcmp(state, "offline") == 0) { break;
case 0:
(void)cpu_down(cpu); (void)cpu_down(cpu);
disable_hotplug_cpu(cpu); disable_hotplug_cpu(cpu);
} else { break;
printk(KERN_ERR "XENBUS: unknown state(%s) on CPU%d\n", default:
state, cpu); break;
} }
} }
...@@ -64,12 +76,20 @@ static void handle_vcpu_hotplug_event(struct xenbus_watch *watch, ...@@ -64,12 +76,20 @@ static void handle_vcpu_hotplug_event(struct xenbus_watch *watch,
static int setup_cpu_watcher(struct notifier_block *notifier, static int setup_cpu_watcher(struct notifier_block *notifier,
unsigned long event, void *data) unsigned long event, void *data)
{ {
int cpu;
static struct xenbus_watch cpu_watch = { static struct xenbus_watch cpu_watch = {
.node = "cpu", .node = "cpu",
.callback = handle_vcpu_hotplug_event}; .callback = handle_vcpu_hotplug_event};
(void)register_xenbus_watch(&cpu_watch); (void)register_xenbus_watch(&cpu_watch);
for_each_possible_cpu(cpu) {
if (vcpu_online(cpu) == 0) {
(void)cpu_down(cpu);
cpu_clear(cpu, cpu_present_map);
}
}
return NOTIFY_DONE; return NOTIFY_DONE;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment