]> Git Repo - qemu.git/blobdiff - block/qcow2-cache.c
ppc/pnv: Loop on the threads of the chip to find a matching NVT
[qemu.git] / block / qcow2-cache.c
index b33bcbc9843d773b9e71325a47b2692e3b036477..7444b9c4ab03734556a662f4659cd0f68c165c2d 100644 (file)
@@ -23,7 +23,6 @@
  */
 
 #include "qemu/osdep.h"
-#include "qemu-common.h"
 #include "qcow2.h"
 #include "trace.h"
 
@@ -75,7 +74,7 @@ static void qcow2_cache_table_release(Qcow2Cache *c, int i, int num_tables)
 /* Using MADV_DONTNEED to discard memory is a Linux-specific feature */
 #ifdef CONFIG_LINUX
     void *t = qcow2_cache_get_table_addr(c, i);
-    int align = getpagesize();
+    int align = qemu_real_host_page_size;
     size_t mem_size = (size_t) c->table_size * num_tables;
     size_t offset = QEMU_ALIGN_UP((uintptr_t) t, align) - (uintptr_t) t;
     size_t length = QEMU_ALIGN_DOWN(mem_size - offset, align);
This page took 0.022991 seconds and 4 git commands to generate.