From nobody Fri Nov 14 00:53:35 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org ARC-Seal: i=1; a=rsa-sha256; t=1583832049; cv=none; d=zohomail.com; s=zohoarc; b=ErqtXjSBxvXqlhjD8jeVmPlCKWkIhnTdAA92KIEvNdnp+/XAXjyB6ne2DoAkSk0vuSK/yfucxTucku53W5euZJrweGhTSauXzF+POJYD1TfVweJhLbThJtU/ggBqn1FiIN9om+tjFMam6RhM5KxkFA0A19fqOxRa76qmqM9UzAg= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1583832049; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To; bh=FK+haxzUA06DO7rGgwpajrWZiXXMklajLbEYs4yThOM=; b=Foat8vwBvNnYNOc/b2rt8rVG3eWWBUxJpHSYVOvwhHM2x5o6ynONzJolJUGUoOiFlLs7iIEU6O57jtsSzenssyHJJhMT6Kg5Qr1xwceOUdo8OOSBXtdAqahL90HzCztn6co+k4vvnoaA+AKOKWSmA90gOit0sXpgEvg9fF7p370= ARC-Authentication-Results: i=1; mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 158383204939739.93116117349098; Tue, 10 Mar 2020 02:20:49 -0700 (PDT) Received: from localhost ([::1]:55900 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jBb4C-0003W9-CN for importer@patchew.org; Tue, 10 Mar 2020 05:20:48 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37568) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jBb2v-0001pv-ED for qemu-devel@nongnu.org; Tue, 10 Mar 2020 05:19:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jBb2t-00065N-Ao for qemu-devel@nongnu.org; Tue, 10 Mar 2020 05:19:29 -0400 Received: from szxga05-in.huawei.com ([45.249.212.191]:3269 helo=huawei.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jBb2p-0005ih-N1; Tue, 10 Mar 2020 05:19:24 -0400 Received: from DGGEMS407-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id 3DD00CAF2E97E0FBE086; Tue, 10 Mar 2020 17:19:19 +0800 (CST) Received: from linux-kDCJWP.huawei.com (10.175.104.212) by DGGEMS407-HUB.china.huawei.com (10.3.19.207) with Microsoft SMTP Server id 14.3.487.0; Tue, 10 Mar 2020 17:19:09 +0800 From: Keqian Zhu To: Subject: [PATCH v2 1/2] memory: Introduce start_global variable in dirty bitmap sync Date: Tue, 10 Mar 2020 17:17:03 +0800 Message-ID: <20200310091704.42340-2-zhukeqian1@huawei.com> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20200310091704.42340-1-zhukeqian1@huawei.com> References: <20200310091704.42340-1-zhukeqian1@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.175.104.212] X-CFilter-Loop: Reflected Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 45.249.212.191 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Paolo Bonzini , qemu-arm@nongnu.org, Keqian Zhu , "Dr . David Alan Gilbert" , wanghaibin.wang@huawei.com Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" In the cpu_physical_memory_sync_dirty_bitmap func, use start_global variable to make code more clear. And the addr variable is only used in slow path, so move it to slow path. Signed-off-by: Keqian Zhu --- include/exec/ram_addr.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/include/exec/ram_addr.h b/include/exec/ram_addr.h index 5e59a3d8d7..8311efb7bc 100644 --- a/include/exec/ram_addr.h +++ b/include/exec/ram_addr.h @@ -445,14 +445,13 @@ uint64_t cpu_physical_memory_sync_dirty_bitmap(RAMBlo= ck *rb, ram_addr_t length, uint64_t *real_dirty_pages) { - ram_addr_t addr; - unsigned long word =3D BIT_WORD((start + rb->offset) >> TARGET_PAGE_BI= TS); + ram_addr_t start_global =3D start + rb->offset; + unsigned long word =3D BIT_WORD(start_global >> TARGET_PAGE_BITS); uint64_t num_dirty =3D 0; unsigned long *dest =3D rb->bmap; =20 /* start address and length is aligned at the start of a word? */ - if (((word * BITS_PER_LONG) << TARGET_PAGE_BITS) =3D=3D - (start + rb->offset) && + if (((word * BITS_PER_LONG) << TARGET_PAGE_BITS) =3D=3D start_global && !(length & ((BITS_PER_LONG << TARGET_PAGE_BITS) - 1))) { int k; int nr =3D BITS_TO_LONGS(length >> TARGET_PAGE_BITS); @@ -495,11 +494,11 @@ uint64_t cpu_physical_memory_sync_dirty_bitmap(RAMBlo= ck *rb, memory_region_clear_dirty_bitmap(rb->mr, start, length); } } else { - ram_addr_t offset =3D rb->offset; + ram_addr_t addr; =20 for (addr =3D 0; addr < length; addr +=3D TARGET_PAGE_SIZE) { if (cpu_physical_memory_test_and_clear_dirty( - start + addr + offset, + start_global + addr, TARGET_PAGE_SIZE, DIRTY_MEMORY_MIGRATION)) { *real_dirty_pages +=3D 1; --=20 2.19.1