diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2008-04-02 10:54:00 -0700 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-24 23:57:32 +0200 |
commit | 8d3d2106c19f4e69f208f59fe484ca113fbb48b3 (patch) | |
tree | 060b83ab832af7a5ca4bb672673dd9262f0ba3bc /arch/x86/xen/Makefile | |
parent | 5f0ababbf49f12330effab932a18055a50f4c0a1 (diff) | |
download | op-kernel-dev-8d3d2106c19f4e69f208f59fe484ca113fbb48b3.zip op-kernel-dev-8d3d2106c19f4e69f208f59fe484ca113fbb48b3.tar.gz |
xen: make grant table arch portable
split out x86 specific part from grant-table.c and
allow ia64/xen specific initialization.
ia64/xen grant table is based on pseudo physical address
(guest physical address) unlike x86/xen. On ia64 init_mm
doesn't map identity straight mapped area.
ia64/xen specific grant table initialization is necessary.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/xen/Makefile')
-rw-r--r-- | arch/x86/xen/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/xen/Makefile b/arch/x86/xen/Makefile index 95c5926..3d8df98 100644 --- a/arch/x86/xen/Makefile +++ b/arch/x86/xen/Makefile @@ -1,4 +1,4 @@ obj-y := enlighten.o setup.o multicalls.o mmu.o \ - time.o manage.o xen-asm.o + time.o manage.o xen-asm.o grant-table.o obj-$(CONFIG_SMP) += smp.o |