From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:53711) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UJoha-0004XO-6C for qemu-devel@nongnu.org; Sun, 24 Mar 2013 13:27:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UJohZ-000120-2r for qemu-devel@nongnu.org; Sun, 24 Mar 2013 13:27:26 -0400 Received: from mail-la0-x233.google.com ([2a00:1450:4010:c03::233]:62846) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UJohY-00011r-Rw for qemu-devel@nongnu.org; Sun, 24 Mar 2013 13:27:25 -0400 Received: by mail-la0-f51.google.com with SMTP id fo13so10091365lab.38 for ; Sun, 24 Mar 2013 10:27:23 -0700 (PDT) Sender: Rabin Vincent From: Rabin Vincent Date: Sun, 24 Mar 2013 18:27:15 +0100 Message-Id: <1364146041-27041-1-git-send-email-rabin@rab.in> Subject: [Qemu-devel] [PATCHv2 0/6] ARM dump-guest-memory support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Rabin Vincent A second patchset to add dump-guest-memory support for ARM. This version of the patchset addresses the following comments from the previous posting, and also adds some more patches to the core dump code (patch #4 and #6): - memset prstatus to 0 in x86_64_write_elf64_note() - handle big endian in dump_write_elf_note() - Save CPSR in ARM prstatus - set correct ELF endianness for ARM BE Rabin Vincent (6): dump: create writable files dump: extract out note helper dump: extract out get note size function dump: fix up memory mapping dependencies / stub target-arm: add dump-guest-memory support dump: fix memory region handling Makefile.target | 3 +- configure | 2 +- dump.c | 88 ++++++++++++++++-- include/exec/memory.h | 7 ++ include/sysemu/dump.h | 6 ++ memory.c | 12 +++ memory_mapping-stub.c | 5 -- memory_mapping.c | 6 +- target-arm/Makefile.objs | 2 +- target-arm/arch_dump.c | 61 +++++++++++++ target-i386/arch_dump.c | 222 +++++++++++----------------------------------- 11 files changed, 223 insertions(+), 191 deletions(-) create mode 100644 target-arm/arch_dump.c -- 1.7.10.4