From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35745) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ve2n9-0001NZ-Ti for qemu-devel@nongnu.org; Wed, 06 Nov 2013 08:05:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ve2n3-0004Vs-Jv for qemu-devel@nongnu.org; Wed, 06 Nov 2013 08:05:03 -0500 Received: from mx1.redhat.com ([209.132.183.28]:62846) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ve2n3-0004Vd-Bq for qemu-devel@nongnu.org; Wed, 06 Nov 2013 08:04:57 -0500 From: Juan Quintela Date: Wed, 6 Nov 2013 14:04:13 +0100 Message-Id: <1383743088-8139-5-git-send-email-quintela@redhat.com> In-Reply-To: <1383743088-8139-1-git-send-email-quintela@redhat.com> References: <1383743088-8139-1-git-send-email-quintela@redhat.com> Subject: [Qemu-devel] [PATCH 04/39] exec: use accessor function to know if memory is dirty List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: chegu_vinod@hp.com Signed-off-by: Juan Quintela --- exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec.c b/exec.c index 79610ce..7cf5634 100644 --- a/exec.c +++ b/exec.c @@ -1397,7 +1397,7 @@ static void notdirty_mem_write(void *opaque, hwaddr ram_addr, cpu_physical_memory_set_dirty_flags(ram_addr, dirty_flags); /* we remove the notdirty callback only if the code has been flushed */ - if (dirty_flags == 0xff) { + if (cpu_physical_memory_is_dirty(ram_addr)) { CPUArchState *env = current_cpu->env_ptr; tlb_set_dirty(env, env->mem_io_vaddr); } -- 1.8.3.1