aboutsummaryrefslogtreecommitdiffstats
path: root/extras
diff options
context:
space:
mode:
authorkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2003-10-28 11:29:39 +0000
committerkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2003-10-28 11:29:39 +0000
commit80e8211171990dc4cdb0e76a43a8cc6ee36a21df (patch)
treeaf8b9e18d9a67ad3025dd50755aca205c9d6ef0a /extras
parent34d223c4f89d97dc8a830838efbb1c7cc6cec5b0 (diff)
downloadxen-80e8211171990dc4cdb0e76a43a8cc6ee36a21df.tar.gz
xen-80e8211171990dc4cdb0e76a43a8cc6ee36a21df.tar.bz2
xen-80e8211171990dc4cdb0e76a43a8cc6ee36a21df.zip
bitkeeper revision 1.532 (3f9e5323lNKiselc-ZGn8rFVU5PAVQ)
Many files: Cleanups and renames to teh Xen interface. .del-dom_mem_ops.h~73077f4b4349054: Delete: xenolinux-2.4.22-sparse/arch/xeno/drivers/balloon/dom_mem_ops.h dom_mem_ops.h: Rename: xen/include/xeno/dom_mem_ops.h -> xen/include/hypervisor-ifs/dom_mem_ops.h
Diffstat (limited to 'extras')
-rw-r--r--extras/mini-os/h/hypervisor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/mini-os/h/hypervisor.h b/extras/mini-os/h/hypervisor.h
index a760409c32..3519b6faff 100644
--- a/extras/mini-os/h/hypervisor.h
+++ b/extras/mini-os/h/hypervisor.h
@@ -43,12 +43,12 @@ static inline int HYPERVISOR_set_trap_table(trap_info_t *table)
return ret;
}
-static inline int HYPERVISOR_pt_update(page_update_request_t *req, int count)
+static inline int HYPERVISOR_mmu_update(mmu_update_t *req, int count)
{
int ret;
__asm__ __volatile__ (
TRAP_INSTR
- : "=a" (ret) : "0" (__HYPERVISOR_pt_update),
+ : "=a" (ret) : "0" (__HYPERVISOR_mmu_update),
"b" (req), "c" (count) );
return ret;