diff options
author | Maran Wilson <maran.wilson@oracle.com> | 2018-12-10 11:08:44 -0800 |
---|---|---|
committer | Boris Ostrovsky <boris.ostrovsky@oracle.com> | 2018-12-13 13:41:49 -0500 |
commit | 4df7363e52105bf7a8589efb2959c907872644fb (patch) | |
tree | 416b2481a29c4ef733800fef4ff19f5fcc69ae6c /arch/x86/xen/Makefile | |
parent | fcd4747698150bc3a9596481d3eb2b3ae71d82f1 (diff) | |
download | linux-4df7363e52105bf7a8589efb2959c907872644fb.tar.gz linux-4df7363e52105bf7a8589efb2959c907872644fb.tar.bz2 linux-4df7363e52105bf7a8589efb2959c907872644fb.zip |
xen/pvh: Create a new file for Xen specific PVH code
We need to refactor PVH entry code so that support for other hypervisors
like Qemu/KVM can be added more easily.
The first step in that direction is to create a new file that will
eventually hold the Xen specific routines.
Signed-off-by: Maran Wilson <maran.wilson@oracle.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Diffstat (limited to 'arch/x86/xen/Makefile')
-rw-r--r-- | arch/x86/xen/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/xen/Makefile b/arch/x86/xen/Makefile index b239922f6c6c..084de77a109e 100644 --- a/arch/x86/xen/Makefile +++ b/arch/x86/xen/Makefile @@ -36,6 +36,8 @@ obj-$(CONFIG_XEN_PV) += multicalls.o obj-$(CONFIG_XEN_PV) += xen-asm.o obj-$(CONFIG_XEN_PV) += xen-asm_$(BITS).o +obj-$(CONFIG_XEN_PVH) += enlighten_pvh.o + obj-$(CONFIG_EVENT_TRACING) += trace.o obj-$(CONFIG_SMP) += smp.o |