aboutsummaryrefslogtreecommitdiffstats
path: root/unmodified_drivers
diff options
context:
space:
mode:
authorAlex Williamson <alex.williamson@hp.com>2008-02-04 08:38:35 -0700
committerAlex Williamson <alex.williamson@hp.com>2008-02-04 08:38:35 -0700
commita37c72d0fc43b7ea1f993ac35b9ae8ab324bc4a0 (patch)
tree90aa82f08f857f08af2cd8ce424863879f802feb /unmodified_drivers
parentc5bc3e2e4938b103b2e21e8f230bf55d00485242 (diff)
downloadxen-a37c72d0fc43b7ea1f993ac35b9ae8ab324bc4a0.tar.gz
xen-a37c72d0fc43b7ea1f993ac35b9ae8ab324bc4a0.tar.bz2
xen-a37c72d0fc43b7ea1f993ac35b9ae8ab324bc4a0.zip
[IA64] Add xencomm_arch_hypercall_suspend to fix module load
Make use of split out xencomm_arch_hypercall_suspend to fix the following module load error: Loading xen-platform-pci.ko module xen_platform_pci: Unknown symbol xencomm_hypercall_suspend insmod: error inserting '/lib/xen-platform-pci.ko': -1 Unknown symbol in module ERROR: /bin/insmod exited abnormally! (pid 210) Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Diffstat (limited to 'unmodified_drivers')
-rwxr-xr-xunmodified_drivers/linux-2.6/mkbuildtree1
-rw-r--r--unmodified_drivers/linux-2.6/platform-pci/Kbuild2
2 files changed, 2 insertions, 1 deletions
diff --git a/unmodified_drivers/linux-2.6/mkbuildtree b/unmodified_drivers/linux-2.6/mkbuildtree
index 88985a5063..9d0f04907e 100755
--- a/unmodified_drivers/linux-2.6/mkbuildtree
+++ b/unmodified_drivers/linux-2.6/mkbuildtree
@@ -77,6 +77,7 @@ i[34567]86|x86_64)
ln -sf ${XL}/include/asm-ia64/xen/xcom_hcall.h include/asm/xen
ln -sf ${XL}/include/asm-ia64/xen/xencomm.h include/asm/xen
ln -sf ${XL}/arch/ia64/xen/xcom_hcall.c platform-pci/
+ ln -sf ${XL}/arch/ia64/xen/xcom_asm.S platform-pci/
ln -sf ${XL}/arch/ia64/xen/xencomm.c platform-pci/xencomm_arch.c
ln -sf ${XL}/drivers/xen/core/xencomm.c platform-pci
;;
diff --git a/unmodified_drivers/linux-2.6/platform-pci/Kbuild b/unmodified_drivers/linux-2.6/platform-pci/Kbuild
index ab836e4d51..50951f94fd 100644
--- a/unmodified_drivers/linux-2.6/platform-pci/Kbuild
+++ b/unmodified_drivers/linux-2.6/platform-pci/Kbuild
@@ -17,5 +17,5 @@ xen-platform-pci-objs += ../xenbus/xen_proc.o
# Can we do better ?
ifeq ($(ARCH),ia64)
- xen-platform-pci-objs += xencomm.o xencomm_arch.o xcom_hcall.o
+ xen-platform-pci-objs += xencomm.o xencomm_arch.o xcom_hcall.o xcom_asm.o
endif