From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42112) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VTrxL-0005aX-Pn for qemu-devel@nongnu.org; Wed, 09 Oct 2013 07:29:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VTrxF-0001JV-LW for qemu-devel@nongnu.org; Wed, 09 Oct 2013 07:29:31 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47194) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VTrxF-0001JG-Cr for qemu-devel@nongnu.org; Wed, 09 Oct 2013 07:29:25 -0400 From: Juan Quintela Date: Wed, 9 Oct 2013 13:28:47 +0200 Message-Id: <1381318130-10620-26-git-send-email-quintela@redhat.com> In-Reply-To: <1381318130-10620-1-git-send-email-quintela@redhat.com> References: <1381318130-10620-1-git-send-email-quintela@redhat.com> Subject: [Qemu-devel] [PATCH 25/28] memory: s/mask/clear/ cpu_physical_memory_mask_dirty_range List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: chegu_vinod@hp.com Now all functions use the same wording that bitops/bitmap operations Signed-off-by: Juan Quintela --- exec.c | 2 +- include/exec/memory-internal.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/exec.c b/exec.c index 6fd83c9..fcdcc56 100644 --- a/exec.c +++ b/exec.c @@ -688,7 +688,7 @@ void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end, length = end - start; if (length == 0) return; - cpu_physical_memory_mask_dirty_range(start, length, client); + cpu_physical_memory_clear_dirty_range(start, length, client); if (tcg_enabled()) { tlb_reset_dirty_range_all(start, end, length); diff --git a/include/exec/memory-internal.h b/include/exec/memory-internal.h index de8f279..0c1dbfa 100644 --- a/include/exec/memory-internal.h +++ b/include/exec/memory-internal.h @@ -99,9 +99,9 @@ static inline void cpu_physical_memory_set_dirty_range(ram_addr_t start, xen_modified_memory(addr, length); } -static inline void cpu_physical_memory_mask_dirty_range(ram_addr_t start, - ram_addr_t length, - unsigned client) +static inline void cpu_physical_memory_clear_dirty_range(ram_addr_t start, + ram_addr_t length, + unsigned client) { ram_addr_t addr, end; -- 1.8.3.1