diff options
| author | Juergen Gross <jgross@suse.com> | 2018-08-28 03:40:14 -0400 |
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2018-09-03 10:50:33 -0400 |
| commit | 3013c2be600fe22d336ab4de91aedde258f1f7d5 (patch) | |
| tree | 9ac84ffeec2b7e5ceba2afbed3f8e2dce9c69a1d | |
| parent | f030aade9165080f3539fb86fc2ce9ffc391813c (diff) | |
x86/xen: Link platform-pci-unplug.o only if CONFIG_XEN_PVHVM
Instead of using one large #ifdef CONFIG_XEN_PVHVM in
arch/x86/xen/platform-pci-unplug.c add the object file depending on
CONFIG_XEN_PVHVM being set.
Signed-off-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: xen-devel@lists.xenproject.org
Cc: virtualization@lists.linux-foundation.org
Cc: akataria@vmware.com
Cc: rusty@rustcorp.com.au
Cc: hpa@zytor.com
Link: https://lkml.kernel.org/r/20180828074026.820-4-jgross@suse.com
| -rw-r--r-- | arch/x86/xen/Makefile | 2 | ||||
| -rw-r--r-- | arch/x86/xen/platform-pci-unplug.c | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/xen/Makefile b/arch/x86/xen/Makefile index a964f307a266..dd2550d33b38 100644 --- a/arch/x86/xen/Makefile +++ b/arch/x86/xen/Makefile | |||
| @@ -19,11 +19,11 @@ obj-y += mmu.o | |||
| 19 | obj-y += time.o | 19 | obj-y += time.o |
| 20 | obj-y += grant-table.o | 20 | obj-y += grant-table.o |
| 21 | obj-y += suspend.o | 21 | obj-y += suspend.o |
| 22 | obj-y += platform-pci-unplug.o | ||
| 23 | 22 | ||
| 24 | obj-$(CONFIG_XEN_PVHVM) += enlighten_hvm.o | 23 | obj-$(CONFIG_XEN_PVHVM) += enlighten_hvm.o |
| 25 | obj-$(CONFIG_XEN_PVHVM) += mmu_hvm.o | 24 | obj-$(CONFIG_XEN_PVHVM) += mmu_hvm.o |
| 26 | obj-$(CONFIG_XEN_PVHVM) += suspend_hvm.o | 25 | obj-$(CONFIG_XEN_PVHVM) += suspend_hvm.o |
| 26 | obj-$(CONFIG_XEN_PVHVM) += platform-pci-unplug.o | ||
| 27 | 27 | ||
| 28 | obj-$(CONFIG_XEN_PV) += setup.o | 28 | obj-$(CONFIG_XEN_PV) += setup.o |
| 29 | obj-$(CONFIG_XEN_PV) += apic.o | 29 | obj-$(CONFIG_XEN_PV) += apic.o |
diff --git a/arch/x86/xen/platform-pci-unplug.c b/arch/x86/xen/platform-pci-unplug.c index 33a783c77d96..3957946a6cfe 100644 --- a/arch/x86/xen/platform-pci-unplug.c +++ b/arch/x86/xen/platform-pci-unplug.c | |||
| @@ -30,7 +30,6 @@ | |||
| 30 | #define XEN_PLATFORM_ERR_PROTOCOL -2 | 30 | #define XEN_PLATFORM_ERR_PROTOCOL -2 |
| 31 | #define XEN_PLATFORM_ERR_BLACKLIST -3 | 31 | #define XEN_PLATFORM_ERR_BLACKLIST -3 |
| 32 | 32 | ||
| 33 | #ifdef CONFIG_XEN_PVHVM | ||
| 34 | /* store the value of xen_emul_unplug after the unplug is done */ | 33 | /* store the value of xen_emul_unplug after the unplug is done */ |
| 35 | static int xen_platform_pci_unplug; | 34 | static int xen_platform_pci_unplug; |
| 36 | static int xen_emul_unplug; | 35 | static int xen_emul_unplug; |
| @@ -214,4 +213,3 @@ static int __init parse_xen_emul_unplug(char *arg) | |||
| 214 | return 0; | 213 | return 0; |
| 215 | } | 214 | } |
| 216 | early_param("xen_emul_unplug", parse_xen_emul_unplug); | 215 | early_param("xen_emul_unplug", parse_xen_emul_unplug); |
| 217 | #endif | ||
