.print = palacios_print_scoped,
.allocate_pages = palacios_allocate_pages,
.free_pages = palacios_free_pages,
+ .vmalloc = palacios_valloc,
+ .vfree = palacios_vfree,
.malloc = palacios_alloc,
.free = palacios_free,
.vaddr_to_paddr = palacios_vaddr_to_paddr,
} \
} while (0)
+#define V3_VMalloc(size) ({ \
+ extern struct v3_os_hooks * os_hooks; \
+ void * var = 0; \
+ if ((os_hooks) && (os_hooks)->vmalloc) { \
+ var = (os_hooks)->vmalloc(size); \
+ } \
+ if (!var) PrintError(VM_NONE,VCORE_NONE,"VMALLOC FAILURE. Memory LEAK!!\n"); \
+ var; \
+ })
+
+#define V3_VFree(addr) \
+ do { \
+ extern struct v3_os_hooks * os_hooks; \
+ if ((os_hooks) && (os_hooks)->vfree) { \
+ (os_hooks)->vfree(addr); \
+ } \
+ } while (0)
+
// uint_t V3_CPU_KHZ();
#define V3_CPU_KHZ() ({ \
unsigned int khz = 0; \
// For page allocation:
// - node_id -1 => any node, otherwise the numa node we want to alloc from
// - constraint = 0 => no constraints, otherwise a bitwise-or of the following flags
+ // Allocates physically contiguous pages
#define V3_ALLOC_PAGES_CONSTRAINT_4GB 1
void *(*allocate_pages)(int num_pages, unsigned int alignment, int node_id, int constraint);
void (*free_pages)(void * page, int num_pages);
+ // Allocates virtually contiguous memory
+ void *(*vmalloc)(unsigned int size);
+ void (*vfree)(void * addr);
+
+ // Allocates virtually and physically contiguous memory
void *(*malloc)(unsigned int size);
void (*free)(void * addr);
PrintDebug(VM_NONE, VCORE_NONE, "v3_init_mem_map: %llu base regions will be allocated of %llu base regions in guest\n",
(uint64_t)num_base_regions_host_mem, (uint64_t)map->num_base_regions);
- map->base_regions = V3_AllocPages(CEIL_DIV(sizeof(struct v3_mem_region) * map->num_base_regions, PAGE_SIZE_4KB));
+ map->base_regions = V3_VMalloc(sizeof(struct v3_mem_region) * map->num_base_regions);
if (map->base_regions == NULL) {
PrintError(vm, VCORE_NONE, "Could not allocate base region array\n");
return -1;
}
- map->base_regions = V3_VAddr(map->base_regions);
memset(map->base_regions, 0, sizeof(struct v3_mem_region) * map->num_base_regions);
#endif
}
- V3_FreePages(V3_PAddr(map->base_regions),
- CEIL_DIV(sizeof(struct v3_mem_region) * map->num_base_regions, PAGE_SIZE_4KB));
+ V3_VFree(map->base_regions);
}