Files
linux-apfs/drivers/xen/cpu_hotplug.c
T

113 lines
2.0 KiB
C
Raw Normal View History

2008-08-22 11:52:15 +01:00
#include <linux/notifier.h>
#include <xen/xen.h>
2008-08-22 11:52:15 +01:00
#include <xen/xenbus.h>
2008-08-17 21:05:42 -04:00
#include <asm/xen/hypervisor.h>
2008-08-22 11:52:15 +01:00
#include <asm/cpu.h>
static void enable_hotplug_cpu(int cpu)
{
if (!cpu_present(cpu))
arch_register_cpu(cpu);
2009-03-13 14:49:56 +10:30
set_cpu_present(cpu, true);
2008-08-22 11:52:15 +01:00
}
static void disable_hotplug_cpu(int cpu)
{
if (cpu_present(cpu))
arch_unregister_cpu(cpu);
2009-03-13 14:49:56 +10:30
set_cpu_present(cpu, false);
2008-08-22 11:52:15 +01:00
}
2009-04-02 13:24:28 +01:00
static int vcpu_online(unsigned int cpu)
2008-08-22 11:52:15 +01:00
{
int err;
char dir[32], state[32];
sprintf(dir, "cpu/%u", cpu);
err = xenbus_scanf(XBT_NIL, dir, "availability", "%s", state);
if (err != 1) {
if (!xen_initial_domain())
printk(KERN_ERR "XENBUS: Unable to read cpu state\n");
2009-04-02 13:24:28 +01:00
return err;
2008-08-22 11:52:15 +01:00
}
2009-04-02 13:24:28 +01:00
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:
2008-08-22 11:52:15 +01:00
enable_hotplug_cpu(cpu);
2009-04-02 13:24:28 +01:00
break;
case 0:
2008-08-22 11:52:15 +01:00
(void)cpu_down(cpu);
disable_hotplug_cpu(cpu);
2009-04-02 13:24:28 +01:00
break;
default:
break;
2008-08-22 11:52:15 +01:00
}
}
static void handle_vcpu_hotplug_event(struct xenbus_watch *watch,
const char **vec, unsigned int len)
{
unsigned int cpu;
char *cpustr;
const char *node = vec[XS_WATCH_PATH];
cpustr = strstr(node, "cpu/");
if (cpustr != NULL) {
sscanf(cpustr, "cpu/%u", &cpu);
vcpu_hotplug(cpu);
}
}
static int setup_cpu_watcher(struct notifier_block *notifier,
unsigned long event, void *data)
{
2009-04-02 13:24:28 +01:00
int cpu;
2008-08-22 11:52:15 +01:00
static struct xenbus_watch cpu_watch = {
.node = "cpu",
.callback = handle_vcpu_hotplug_event};
(void)register_xenbus_watch(&cpu_watch);
2009-04-02 13:24:28 +01:00
for_each_possible_cpu(cpu) {
if (vcpu_online(cpu) == 0) {
(void)cpu_down(cpu);
2009-11-03 14:58:38 +10:30
set_cpu_present(cpu, false);
2009-04-02 13:24:28 +01:00
}
}
2008-08-22 11:52:15 +01:00
return NOTIFY_DONE;
}
static int __init setup_vcpu_hotplug_event(void)
{
static struct notifier_block xsn_cpu = {
.notifier_call = setup_cpu_watcher };
if (!xen_pv_domain())
2008-08-22 11:52:15 +01:00
return -ENODEV;
register_xenstore_notifier(&xsn_cpu);
return 0;
}
arch_initcall(setup_vcpu_hotplug_event);