blkcg: move refcnt to blkcg core
[linux-2.6.git] / drivers / xen / cpu_hotplug.c
blob4dcfced107f50e41c518405b28747064d62d78bc
1 #include <linux/notifier.h>
3 #include <xen/xen.h>
4 #include <xen/xenbus.h>
6 #include <asm/xen/hypervisor.h>
7 #include <asm/cpu.h>
9 static void enable_hotplug_cpu(int cpu)
11 if (!cpu_present(cpu))
12 arch_register_cpu(cpu);
14 set_cpu_present(cpu, true);
17 static void disable_hotplug_cpu(int cpu)
19 if (cpu_present(cpu))
20 arch_unregister_cpu(cpu);
22 set_cpu_present(cpu, false);
25 static int vcpu_online(unsigned int cpu)
27 int err;
28 char dir[32], state[32];
30 sprintf(dir, "cpu/%u", cpu);
31 err = xenbus_scanf(XBT_NIL, dir, "availability", "%s", state);
32 if (err != 1) {
33 if (!xen_initial_domain())
34 printk(KERN_ERR "XENBUS: Unable to read cpu state\n");
35 return err;
38 if (strcmp(state, "online") == 0)
39 return 1;
40 else if (strcmp(state, "offline") == 0)
41 return 0;
43 printk(KERN_ERR "XENBUS: unknown state(%s) on CPU%d\n", state, cpu);
44 return -EINVAL;
46 static void vcpu_hotplug(unsigned int cpu)
48 if (!cpu_possible(cpu))
49 return;
51 switch (vcpu_online(cpu)) {
52 case 1:
53 enable_hotplug_cpu(cpu);
54 break;
55 case 0:
56 (void)cpu_down(cpu);
57 disable_hotplug_cpu(cpu);
58 break;
59 default:
60 break;
64 static void handle_vcpu_hotplug_event(struct xenbus_watch *watch,
65 const char **vec, unsigned int len)
67 unsigned int cpu;
68 char *cpustr;
69 const char *node = vec[XS_WATCH_PATH];
71 cpustr = strstr(node, "cpu/");
72 if (cpustr != NULL) {
73 sscanf(cpustr, "cpu/%u", &cpu);
74 vcpu_hotplug(cpu);
78 static int setup_cpu_watcher(struct notifier_block *notifier,
79 unsigned long event, void *data)
81 int cpu;
82 static struct xenbus_watch cpu_watch = {
83 .node = "cpu",
84 .callback = handle_vcpu_hotplug_event};
86 (void)register_xenbus_watch(&cpu_watch);
88 for_each_possible_cpu(cpu) {
89 if (vcpu_online(cpu) == 0) {
90 (void)cpu_down(cpu);
91 set_cpu_present(cpu, false);
95 return NOTIFY_DONE;
98 static int __init setup_vcpu_hotplug_event(void)
100 static struct notifier_block xsn_cpu = {
101 .notifier_call = setup_cpu_watcher };
103 if (!xen_pv_domain())
104 return -ENODEV;
106 register_xenstore_notifier(&xsn_cpu);
108 return 0;
111 arch_initcall(setup_vcpu_hotplug_event);