aboutsummaryrefslogtreecommitdiffstats
path: root/unmodified_drivers/linux-2.6/platform-pci/xen_support.c
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-08-22 17:16:58 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-08-22 17:16:58 +0100
commitb3ea76b1e0f28467d17b4c5022a9086a7f89891d (patch)
treea81027f077ded49dcd7d5efb470616c3f8ba2512 /unmodified_drivers/linux-2.6/platform-pci/xen_support.c
parentb1851948f1a53e12739c040930a0b8b05a647b3e (diff)
downloadxen-b3ea76b1e0f28467d17b4c5022a9086a7f89891d.tar.gz
xen-b3ea76b1e0f28467d17b4c5022a9086a7f89891d.tar.bz2
xen-b3ea76b1e0f28467d17b4c5022a9086a7f89891d.zip
[HVM] Clean ups for PV-on-HVM drivers. In particular, platform-pci
driver can now handle multi-page hypercall stub areas. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'unmodified_drivers/linux-2.6/platform-pci/xen_support.c')
-rw-r--r--unmodified_drivers/linux-2.6/platform-pci/xen_support.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/unmodified_drivers/linux-2.6/platform-pci/xen_support.c b/unmodified_drivers/linux-2.6/platform-pci/xen_support.c
index c3a6bec595..b1a903b1c7 100644
--- a/unmodified_drivers/linux-2.6/platform-pci/xen_support.c
+++ b/unmodified_drivers/linux-2.6/platform-pci/xen_support.c
@@ -26,14 +26,18 @@
#include <asm/hypervisor.h>
#include "platform-pci.h"
-EXPORT_SYMBOL(xen_machphys_update);
void xen_machphys_update(unsigned long mfn, unsigned long pfn)
{
BUG();
}
+EXPORT_SYMBOL(xen_machphys_update);
void balloon_update_driver_allowance(long delta)
{
}
-
EXPORT_SYMBOL(balloon_update_driver_allowance);
+
+void balloon_release_driver_page(struct page *page)
+{
+}
+EXPORT_SYMBOL(balloon_release_driver_page);