Re: [Qemu-devel] [PATCH V11 11/15] Introduce qemu_put_ram_ptr

2011-04-06 Thread John Baboval
This seems to leak entries on the map cache locked entries list. Patch below: Signed-off-by: John Baboval --- exec.c |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/exec.c b/exec.c index 1f88d6a..f18cb7d 100644 --- a/exec.c +++ b/exec.c @@ -3759,9 +3759,8 @@ void cp

[Qemu-devel] [PATCH V11 11/15] Introduce qemu_put_ram_ptr

2011-03-01 Thread anthony . perard
From: Anthony PERARD This function allows to unlock a ram_ptr give by qemu_get_ram_ptr. After a call to qemu_put_ram_ptr, the pointer may be unmap from QEMU when used with Xen. Signed-off-by: Anthony PERARD Acked-by: Alexander Graf --- cpu-common.h |1 + exec.c | 10 ++