]> git.proxmox.com Git - qemu.git/commit
osdep: introduce qemu_anon_ram_free to free qemu_anon_ram_alloc-ed memory
authorPaolo Bonzini <pbonzini@redhat.com>
Mon, 13 May 2013 14:19:56 +0000 (16:19 +0200)
committerAnthony Liguori <aliguori@us.ibm.com>
Tue, 14 May 2013 13:53:31 +0000 (08:53 -0500)
commite7a09b92b70786f9e8c5fbf787e0248c6ebbe707
tree4a24722a71dd1194a7f7cb455ef48e504925d34d
parent6eebf958abf3f3f701116d4524ef88bb9fd6e341
osdep: introduce qemu_anon_ram_free to free qemu_anon_ram_alloc-ed memory

We switched from qemu_memalign to mmap() but then we don't modify
qemu_vfree() to do a munmap() over free().  Which we cannot do
because qemu_vfree() frees memory allocated by qemu_{mem,block}align.

Introduce a new function that does the munmap(), luckily the size is
available in the RAMBlock.

Reported-by: Amos Kong <akong@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Amos Kong <akong@redhat.com>
Message-id: 1368454796-14989-3-git-send-email-pbonzini@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
exec.c
include/qemu/osdep.h
trace-events
util/oslib-posix.c
util/oslib-win32.c