From 893a9cb47c767adfbc22357e33e784e7137392df Mon Sep 17 00:00:00 2001 From: Christoph Hellwig Date: Mon, 7 Jun 2010 12:06:37 +0200 Subject: cow: stop using mmap We don't have an equivalent to mmap in the qemu block API, so read and write the bitmap directly. At least in the dumb implementation added in this patch this is a lot less efficient, but it means cow can also work on windows, and over nbd or curl. And it fixes qemu-iotests testcase 012 which did not work properly due to issues with read-only mmap access. In addition we can also get rid of the now unused get_mmap_addr function. Signed-off-by: Christoph Hellwig Signed-off-by: Kevin Wolf --- qemu-malloc.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'qemu-malloc.c') diff --git a/qemu-malloc.c b/qemu-malloc.c index 1b33e04..36b0b36 100644 --- a/qemu-malloc.c +++ b/qemu-malloc.c @@ -32,11 +32,6 @@ static void *oom_check(void *ptr) return ptr; } -void *get_mmap_addr(unsigned long size) -{ - return NULL; -} - void qemu_free(void *ptr) { free(ptr); -- cgit v1.1