diff options
author | Stefano Stabellini <stefano.stabellini@eu.citrix.com> | 2010-07-29 09:37:48 -0400 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2010-07-29 14:11:33 -0400 |
commit | ca65f9fc0c447da5b270b05c41c21b19c88617c3 (patch) | |
tree | 7a8813233d867635d01cc2c8397099df4468751d /arch/x86/xen/platform-pci-unplug.c | |
parent | b98a409b80ac510c95b4f1bafdef28edaeabd3e7 (diff) |
Introduce CONFIG_XEN_PVHVM compile option
This patch introduce a CONFIG_XEN_PVHVM compile time option to
enable/disable Xen PV on HVM support.
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Diffstat (limited to 'arch/x86/xen/platform-pci-unplug.c')
-rw-r--r-- | arch/x86/xen/platform-pci-unplug.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/xen/platform-pci-unplug.c b/arch/x86/xen/platform-pci-unplug.c index 2f7f3fb34777..554c002a1e1a 100644 --- a/arch/x86/xen/platform-pci-unplug.c +++ b/arch/x86/xen/platform-pci-unplug.c | |||
@@ -32,6 +32,7 @@ | |||
32 | /* store the value of xen_emul_unplug after the unplug is done */ | 32 | /* store the value of xen_emul_unplug after the unplug is done */ |
33 | int xen_platform_pci_unplug; | 33 | int xen_platform_pci_unplug; |
34 | EXPORT_SYMBOL_GPL(xen_platform_pci_unplug); | 34 | EXPORT_SYMBOL_GPL(xen_platform_pci_unplug); |
35 | #ifdef CONFIG_XEN_PVHVM | ||
35 | static int xen_emul_unplug; | 36 | static int xen_emul_unplug; |
36 | 37 | ||
37 | static int __init check_platform_magic(void) | 38 | static int __init check_platform_magic(void) |
@@ -133,3 +134,4 @@ static int __init parse_xen_emul_unplug(char *arg) | |||
133 | return 0; | 134 | return 0; |
134 | } | 135 | } |
135 | early_param("xen_emul_unplug", parse_xen_emul_unplug); | 136 | early_param("xen_emul_unplug", parse_xen_emul_unplug); |
137 | #endif | ||