From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id F21FBC77B61 for ; Thu, 27 Apr 2023 09:54:18 +0000 (UTC) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pryJA-0004ml-Th; Thu, 27 Apr 2023 05:53:00 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pryJ8-0004m3-OB for qemu-devel@nongnu.org; Thu, 27 Apr 2023 05:52:58 -0400 Received: from us-smtp-delivery-124.mimecast.com ([170.10.129.124]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pryJ5-0000GI-TP for qemu-devel@nongnu.org; Thu, 27 Apr 2023 05:52:58 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1682589174; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=So7kpXrb7cV0UvncIqicvZPdMh4mWLNIKUG+xNw8oMk=; b=cLmVsugRGVkREwiiWXx/XbMJjYji6J+DtVFchuK859iCSoJbqUfNI0xX5/uwJVqSWCAE2a GvbWUDGgFFLjLyQaNuqZ1GcVQr/0NO6X2JFzq4weVyeiHIEeUwAni+zWewz0vP6K0Iem9R lS5bMU0qeFAGpRMP/6Gtkzzb4Q4dvRU= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-325-Q11oDuONNMCf3ahRmUavhQ-1; Thu, 27 Apr 2023 05:52:52 -0400 X-MC-Unique: Q11oDuONNMCf3ahRmUavhQ-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 46E152806041; Thu, 27 Apr 2023 09:52:52 +0000 (UTC) Received: from secure.mitica (unknown [10.39.193.238]) by smtp.corp.redhat.com (Postfix) with ESMTP id EC6152166B46; Thu, 27 Apr 2023 09:52:50 +0000 (UTC) From: Juan Quintela To: qemu-devel@nongnu.org Cc: Richard Henderson , Peter Xu , Leonardo Bras , Paolo Bonzini , Juan Quintela Subject: [PATCH v6 0/3] Migration: Make more ram_counters atomic Date: Thu, 27 Apr 2023 11:52:47 +0200 Message-Id: <20230427095250.22350-1-quintela@redhat.com> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 3.1 on 10.11.54.6 Received-SPF: pass client-ip=170.10.129.124; envelope-from=quintela@redhat.com; helo=us-smtp-delivery-124.mimecast.com X-Spam_score_int: -22 X-Spam_score: -2.3 X-Spam_bar: -- X-Spam_report: (-2.3 / 5.0 requ) BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.171, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Hi Changes in v6: - Create stat64_set() operation Impersonating Paolo in "Author" field, as he is the real author. - Update to stat64_set() - Everything is consistent and coherent under the sun. Please review. [v5] Not only change the type of the counters, also use the __nocheck() variants of the functions. Please, review. [v4] - Change aligned_uint64_t to size_t to make (some) 32bit hosts happy. Please review. [v3] - Addressed reviews - All counters are now atomic, either Stat64 or atomic. - Rename duplicated to zero_pages - Rename normal to zero_pages. Please review. [v2] - fix typos found by David Edmondson - Add review-by tags. Please review. [v1] On previous series we cerate ram_atomic_counters. But we basically need that all counters are atomic. So move back to only have ram_counters, just with a new type that allows the atomic counters. Once there, move update of stats out of RAM mutex. And make multifd_bytes atomic. Later, Juan. Juan Quintela (2): migration: Make dirty_pages_rate atomic migration: Make dirty_bytes_last_sync atomic Paolo Bonzini (1): stat64: Add stat64_set() operation include/qemu/stats64.h | 6 ++++++ migration/migration.c | 9 ++++++--- migration/ram.c | 7 ++++--- migration/ram.h | 4 ++-- util/stats64.c | 11 +++++++++++ 5 files changed, 29 insertions(+), 8 deletions(-) -- 2.40.0