From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57906) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1acrbX-00019f-Ni for qemu-devel@nongnu.org; Mon, 07 Mar 2016 04:37:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1acrbT-0003mm-Km for qemu-devel@nongnu.org; Mon, 07 Mar 2016 04:37:31 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56887) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1acrbT-0003mg-Fc for qemu-devel@nongnu.org; Mon, 07 Mar 2016 04:37:27 -0500 References: <1456813104-25902-5-git-send-email-famz@redhat.com> <1457342271-13410-1-git-send-email-famz@redhat.com> From: Laszlo Ersek Message-ID: <56DD4BD4.5060905@redhat.com> Date: Mon, 7 Mar 2016 10:37:24 +0100 MIME-Version: 1.0 In-Reply-To: <1457342271-13410-1-git-send-email-famz@redhat.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] scripts: Fix dump-guest-memory.py for MemoryRegion.ram_block removal List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng , qemu-devel@nongnu.org Cc: Paolo Bonzini , Gonglei , Peter Xu , Janosch Frank On 03/07/16 10:17, Fam Zheng wrote: > Signed-off-by: Fam Zheng > > --- > > This goes after "[PATCH v2 4/7] memory: Drop MemoryRegion.ram_addr" (or > squashed into it if we want strict synchronization). > --- > scripts/dump-guest-memory.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/dump-guest-memory.py b/scripts/dump-guest-memory.py > index f274bf8..c0a2e99 100644 > --- a/scripts/dump-guest-memory.py > +++ b/scripts/dump-guest-memory.py > @@ -352,7 +352,7 @@ def memory_region_get_ram_ptr(memory_region): > return (memory_region_get_ram_ptr(memory_region["alias"].dereference()) > + memory_region["alias_offset"]) > > - return qemu_get_ram_ptr(memory_region["ram_addr"] & TARGET_PAGE_MASK) > + return qemu_get_ram_ptr(memory_region["ram_block"]["offset"]) > > > def get_guest_phys_blocks(): > I didn't follow your series, and I've by now forgotten most of the dump stuff, but if you tested the above with GDB, I can ack it. Acked-by: Laszlo Ersek I hope that Janosch can chime in as well. Thanks Laszlo