summaryrefslogtreecommitdiffstats
path: root/xen-mapcache-stub.c
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2011-06-21 22:59:08 +0200
committerAlexander Graf <agraf@suse.de>2011-07-17 01:54:24 +0200
commite41d7c691ad7f4ad78573f72048eecb16f78974a (patch)
tree47f230ab0545a36715e804fb587f0c40d052b0fb /xen-mapcache-stub.c
parent6dbd588a412ce1ac2a4ba640b418278e92a71890 (diff)
downloadhqemu-e41d7c691ad7f4ad78573f72048eecb16f78974a.zip
hqemu-e41d7c691ad7f4ad78573f72048eecb16f78974a.tar.gz
xen: Clean up map cache API naming
The map cache is a Xen thing, so its API should make this clear. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'xen-mapcache-stub.c')
-rw-r--r--xen-mapcache-stub.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/xen-mapcache-stub.c b/xen-mapcache-stub.c
index 90a994d..f037016 100644
--- a/xen-mapcache-stub.c
+++ b/xen-mapcache-stub.c
@@ -13,24 +13,25 @@
#include "cpu-common.h"
#include "xen-mapcache.h"
-void qemu_map_cache_init(void)
+void xen_map_cache_init(void)
{
}
-uint8_t *qemu_map_cache(target_phys_addr_t phys_addr, target_phys_addr_t size, uint8_t lock)
+uint8_t *xen_map_cache(target_phys_addr_t phys_addr, target_phys_addr_t size,
+ uint8_t lock)
{
return qemu_get_ram_ptr(phys_addr);
}
-ram_addr_t qemu_ram_addr_from_mapcache(void *ptr)
+ram_addr_t xen_ram_addr_from_mapcache(void *ptr)
{
return -1;
}
-void qemu_invalidate_map_cache(void)
+void xen_invalidate_map_cache(void)
{
}
-void qemu_invalidate_entry(uint8_t *buffer)
+void xen_invalidate_map_cache_entry(uint8_t *buffer)
{
}
OpenPOWER on IntegriCloud