cregit-Linux how code gets into the kernel

Release 4.10 drivers/xen/cpu_hotplug.c

Directory: drivers/xen

#define pr_fmt(fmt) "xen:" KBUILD_MODNAME ": " fmt

#include <linux/notifier.h>

#include <xen/xen.h>
#include <xen/xenbus.h>

#include <asm/xen/hypervisor.h>
#include <asm/cpu.h>


static void enable_hotplug_cpu(int cpu) { if (!cpu_present(cpu)) xen_arch_register_cpu(cpu); set_cpu_present(cpu, true); }

Contributors

PersonTokensPropCommitsCommitProp
alex nixonalex nixon2689.66%133.33%
rusty russellrusty russell26.90%133.33%
stefano stabellinistefano stabellini13.45%133.33%
Total29100.00%3100.00%


static void disable_hotplug_cpu(int cpu) { if (cpu_online(cpu)) { lock_device_hotplug(); device_offline(get_cpu_device(cpu)); unlock_device_hotplug(); } if (cpu_present(cpu)) xen_arch_unregister_cpu(cpu); set_cpu_present(cpu, false); }

Contributors

PersonTokensPropCommitsCommitProp
alex nixonalex nixon2549.02%125.00%
stefano stabellinistefano stabellini2447.06%250.00%
rusty russellrusty russell23.92%125.00%
Total51100.00%4100.00%


static int vcpu_online(unsigned int cpu) { int err; char dir[16], state[16]; sprintf(dir, "cpu/%u", cpu); err = xenbus_scanf(XBT_NIL, dir, "availability", "%15s", state); if (err != 1) { if (!xen_initial_domain()) pr_err("Unable to read cpu state\n"); return err; } if (strcmp(state, "online") == 0) return 1; else if (strcmp(state, "offline") == 0) return 0; pr_err("unknown state(%s) on CPU%d\n", state, cpu); return -EINVAL; }

Contributors

PersonTokensPropCommitsCommitProp
alex nixonalex nixon7667.86%120.00%
ian campbellian campbell2320.54%120.00%
konrad rzeszutek wilkkonrad rzeszutek wilk65.36%120.00%
joe perchesjoe perches43.57%120.00%
jan beulichjan beulich32.68%120.00%
Total112100.00%5100.00%


static void vcpu_hotplug(unsigned int cpu) { if (!cpu_possible(cpu)) return; switch (vcpu_online(cpu)) { case 1: enable_hotplug_cpu(cpu); break; case 0: disable_hotplug_cpu(cpu); break; default: break; } }

Contributors

PersonTokensPropCommitsCommitProp
ian campbellian campbell4083.33%150.00%
alex nixonalex nixon816.67%150.00%
Total48100.00%2100.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); } }

Contributors

PersonTokensPropCommitsCommitProp
alex nixonalex nixon71100.00%1100.00%
Total71100.00%1100.00%


static int setup_cpu_watcher(struct notifier_block *notifier, unsigned long event, void *data) { int cpu; static struct xenbus_watch cpu_watch = { .node = "cpu", .callback = handle_vcpu_hotplug_event}; (void)register_xenbus_watch(&cpu_watch); for_each_possible_cpu(cpu) { if (vcpu_online(cpu) == 0) { (void)cpu_down(cpu); set_cpu_present(cpu, false); } } return NOTIFY_DONE; }

Contributors

PersonTokensPropCommitsCommitProp
alex nixonalex nixon4857.83%133.33%
ian campbellian campbell3339.76%133.33%
rusty russellrusty russell22.41%133.33%
Total83100.00%3100.00%


static int __init setup_vcpu_hotplug_event(void) { static struct notifier_block xsn_cpu = { .notifier_call = setup_cpu_watcher }; #ifdef CONFIG_X86 if (!xen_pv_domain()) #else if (!xen_domain()) #endif return -ENODEV; register_xenstore_notifier(&xsn_cpu); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
alex nixonalex nixon4075.47%266.67%
stefano stabellinistefano stabellini1324.53%133.33%
Total53100.00%3100.00%

arch_initcall(setup_vcpu_hotplug_event);

Overall Contributors

PersonTokensPropCommitsCommitProp
alex nixonalex nixon31065.40%216.67%
ian campbellian campbell9620.25%18.33%
stefano stabellinistefano stabellini388.02%216.67%
joe perchesjoe perches112.32%18.33%
rusty russellrusty russell61.27%216.67%
konrad rzeszutek wilkkonrad rzeszutek wilk61.27%18.33%
jeremy fitzhardingejeremy fitzhardinge30.63%18.33%
jan beulichjan beulich30.63%18.33%
al viroal viro10.21%18.33%
Total474100.00%12100.00%
Directory: drivers/xen
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.