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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 AF8D91093170 for ; Sat, 21 Mar 2026 06:43:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=nkTh6Dgk9j28cpGlonJjEJo6JZkiB6zIVkl1iu12Zfc=; b=zfuTJ4jG4XxCd9 U1wVymrDDXiuTtz2B/WMSFtPQm1oQIc3e0pemuQQxe2CFMN3iFty1CkTu4pgND4DMqd7l0ON4+euZ mu6g6IyIPkc+rQlB8aCFZNscgyPyXTVUi0W637UFzuO0u0rFy65bY2qzxlETpg3AcsUh83HoWVOkP NXkG9LDMzrvhfvdVFNRwARbwC0FRO/E2j8d+7BpzV2NqE2LbQVmYV6+xzo9DWesRg8eefDEb6G9+A pZ7uT14Ubq6j8WMjya/rejZT4/byOL8URepJeQrHN7t7WTyPtNSN3MANfSLRV6nn5vz2p/fgfHxVj rgN1mMpzco0zKXooR6mA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98.2 #2 (Red Hat Linux)) id 1w3q3V-0000000E92U-3fsJ; Sat, 21 Mar 2026 06:43:29 +0000 Received: from out30-118.freemail.mail.aliyun.com ([115.124.30.118]) by bombadil.infradead.org with esmtps (Exim 4.98.2 #2 (Red Hat Linux)) id 1w3q3H-0000000E8r8-40L1; Sat, 21 Mar 2026 06:43:18 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1774075390; h=From:To:Subject:Date:Message-ID:MIME-Version; bh=CFe5F2qNF94aRecR5rQidH10sMhxbLDMuB5Obisunh4=; b=f5KL08rniPjKnjDRbg+zHZRnqbGkF6sGElmA4dYEH+hb6rui+obtBWcAoWATU7o52pFDOoDI9ZxRJCjmmzXYTB2KBKh2Sw5ztlRaoyTwqkEdg/tTXozPxoRHp8wMQ4y/yeNtHzP9bHd/no39n2m49eeLjxAJwhDrDSF6SbjkhCI= X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R841e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=maildocker-contentspam033037033178;MF=baolin.wang@linux.alibaba.com;NM=1;PH=DS;RN=18;SR=0;TI=SMTPD_---0X.O7gUx_1774075385; Received: from localhost(mailfrom:baolin.wang@linux.alibaba.com fp:SMTPD_---0X.O7gUx_1774075385 cluster:ay36) by smtp.aliyun-inc.com; Sat, 21 Mar 2026 14:43:06 +0800 From: Baolin Wang To: akpm@linux-foundation.org, david@kernel.org Cc: ljs@kernel.org, Liam.Howlett@oracle.com, vbabka@kernel.org, rppt@kernel.org, surenb@google.com, mhocko@suse.com, baolin.wang@linux.alibaba.com, linux-arm-kernel@lists.infradead.org, x86@kernel.org, linux-parisc@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, linux-riscv@lists.infradead.org, linux-s390@vger.kernel.org, kvm@vger.kernel.org, linux-mm@kvack.org (open), linux-kernel@vger.kernel.org Subject: [PATCH v2 0/6] change young flag check functions to return bool Date: Sat, 21 Mar 2026 14:42:48 +0800 Message-ID: X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20260320_234316_225642_358D69E4 X-CRM114-Status: UNSURE ( 7.81 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-riscv@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-riscv" Errors-To: linux-riscv-bounces+linux-riscv=archiver.kernel.org@lists.infradead.org This is a cleanup patchset to change all young flag check functions to return bool, as discussed with David in the previous thread[1]. Since callers only care about whether the young flag was set, returning bool makes the intention clearer. No functional changes intended. Ran mm selftests on Arm64 and x86 machines, and no issues were found. Note that I only CC'd the arch mailing lists to avoid disturbing too many people. [1] https://lore.kernel.org/all/d172d6bf-c60c-4cf5-9da9-f30de38cdfed@kernel.org/ Changes from v1: - Add reviewed tag from Lorenzo and Ritesh. Thanks. - Drop extern and use 2 tabs indentation, per Lorenzo. - Fix the incorrect conversion of the 'id' variable. Baolin Wang (6): mm: change to return bool for ptep_test_and_clear_young() mm: change to return bool for ptep_clear_flush_young()/clear_flush_young_ptes() mm: change to return bool for pmdp_test_and_clear_young() mm: change to return bool for pmdp_clear_flush_young() mm: change to return bool for pudp_test_and_clear_young() mm: change to return bool for the MMU notifier's young flag check arch/arm64/include/asm/pgtable.h | 38 +++++----- arch/arm64/mm/contpte.c | 14 ++-- arch/microblaze/include/asm/pgtable.h | 2 +- arch/parisc/include/asm/pgtable.h | 9 +-- arch/parisc/kernel/cache.c | 8 +-- arch/powerpc/include/asm/book3s/32/pgtable.h | 4 +- arch/powerpc/include/asm/book3s/64/pgtable.h | 26 +++---- arch/powerpc/include/asm/nohash/64/pgtable.h | 2 +- arch/powerpc/include/asm/nohash/pgtable.h | 4 +- arch/powerpc/mm/book3s64/pgtable.c | 8 +-- arch/riscv/include/asm/pgtable.h | 16 ++--- arch/riscv/mm/pgtable.c | 7 +- arch/s390/include/asm/pgtable.h | 16 ++--- arch/x86/include/asm/pgtable.h | 20 +++--- arch/x86/mm/pgtable.c | 28 ++++---- arch/xtensa/include/asm/pgtable.h | 9 ++- include/linux/mmu_notifier.h | 76 +++++++++----------- include/linux/pgtable.h | 53 +++++++------- mm/internal.h | 16 ++--- mm/mmu_notifier.c | 23 +++--- mm/pgtable-generic.c | 14 ++-- virt/kvm/kvm_main.c | 31 +++----- 22 files changed, 202 insertions(+), 222 deletions(-) -- 2.47.3 _______________________________________________ linux-riscv mailing list linux-riscv@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-riscv