From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Li8GB-0006RL-U6 for qemu-devel@nongnu.org; Fri, 13 Mar 2009 10:21:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Li8G5-0006Kl-PY for qemu-devel@nongnu.org; Fri, 13 Mar 2009 10:21:14 -0400 Received: from [199.232.76.173] (port=50616 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Li8G4-0006Jq-Mb for qemu-devel@nongnu.org; Fri, 13 Mar 2009 10:21:08 -0400 Received: from mel.act-europe.fr ([212.99.106.210]:53560) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Li8G4-0002UE-0E for qemu-devel@nongnu.org; Fri, 13 Mar 2009 10:21:08 -0400 From: Tristan Gingold Date: Fri, 13 Mar 2009 15:20:25 +0100 Message-Id: <1236954043-91856-7-git-send-email-gingold@adacore.com> In-Reply-To: <1236954043-91856-6-git-send-email-gingold@adacore.com> References: <1236954043-91856-1-git-send-email-gingold@adacore.com> <1236954043-91856-2-git-send-email-gingold@adacore.com> <1236954043-91856-3-git-send-email-gingold@adacore.com> <1236954043-91856-4-git-send-email-gingold@adacore.com> <1236954043-91856-5-git-send-email-gingold@adacore.com> <1236954043-91856-6-git-send-email-gingold@adacore.com> Subject: [Qemu-devel] [PATCH 06/24] Be slightly more verbose for unassigned_mem_read* Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Tristan Gingold This was found useful while adding new devices. Signed-off-by: Tristan Gingold --- exec.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/exec.c b/exec.c index 76a89ca..c8bcc88 100644 --- a/exec.c +++ b/exec.c @@ -2436,7 +2436,7 @@ void qemu_ram_free(ram_addr_t addr) static uint32_t unassigned_mem_readb(void *opaque, target_phys_addr_t addr) { #ifdef DEBUG_UNASSIGNED - printf("Unassigned mem read " TARGET_FMT_plx "\n", addr); + printf("Unassigned mem readb " TARGET_FMT_plx "\n", addr); #endif #if defined(TARGET_SPARC) do_unassigned_access(addr, 0, 0, 0, 1); @@ -2447,7 +2447,7 @@ static uint32_t unassigned_mem_readb(void *opaque, target_phys_addr_t addr) static uint32_t unassigned_mem_readw(void *opaque, target_phys_addr_t addr) { #ifdef DEBUG_UNASSIGNED - printf("Unassigned mem read " TARGET_FMT_plx "\n", addr); + printf("Unassigned mem readw " TARGET_FMT_plx "\n", addr); #endif #if defined(TARGET_SPARC) do_unassigned_access(addr, 0, 0, 0, 2); @@ -2458,7 +2458,7 @@ static uint32_t unassigned_mem_readw(void *opaque, target_phys_addr_t addr) static uint32_t unassigned_mem_readl(void *opaque, target_phys_addr_t addr) { #ifdef DEBUG_UNASSIGNED - printf("Unassigned mem read " TARGET_FMT_plx "\n", addr); + printf("Unassigned mem readl " TARGET_FMT_plx "\n", addr); #endif #if defined(TARGET_SPARC) do_unassigned_access(addr, 0, 0, 0, 4); -- 1.6.2