Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'for-linus-4.14c-rc5-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip

Pull xen fixlet from Juergen Gross:
"A minor fix correcting the cpu hotplug name for Xen guests"

* tag 'for-linus-4.14c-rc5-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
xen/vcpu: Use a unified name about cpu hotplug state for pv and pvhvm

+2 -2
+2 -2
arch/x86/xen/enlighten.c
··· 93 93 int rc; 94 94 95 95 rc = cpuhp_setup_state_nocalls(CPUHP_XEN_PREPARE, 96 - "x86/xen/hvm_guest:prepare", 96 + "x86/xen/guest:prepare", 97 97 cpu_up_prepare_cb, cpu_dead_cb); 98 98 if (rc >= 0) { 99 99 rc = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, 100 - "x86/xen/hvm_guest:online", 100 + "x86/xen/guest:online", 101 101 xen_cpu_up_online, NULL); 102 102 if (rc < 0) 103 103 cpuhp_remove_state_nocalls(CPUHP_XEN_PREPARE);