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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 60DAEC41513 for ; Mon, 14 Aug 2023 19:33:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230287AbjHNTd1 (ORCPT ); Mon, 14 Aug 2023 15:33:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33146 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232185AbjHNTdZ (ORCPT ); Mon, 14 Aug 2023 15:33:25 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AECAABB for ; Mon, 14 Aug 2023 12:33:24 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 42F5A61B5F for ; Mon, 14 Aug 2023 19:33:24 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7C007C433C8; Mon, 14 Aug 2023 19:33:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1692041603; bh=BkF65v0Ye6i7SoP9835JK/NjGCGXBmLpT5vXUukD5xI=; h=Date:To:From:Subject:From; b=Liik0LAbJIAafLvWshBN6lsozgGTbbijfiQxYDOQsiTKqUlFOLaxT+jWBTkQHUwm9 9gDMDvue3eQim2qIe50FGtkYbNYGbsi28Gu0zY6K5aMmr7ivApBX6TPRrwzKtLdADF C1hCcyPBjz4fo5TyxiMLBLYgztzCeMn/yX+Fhrvk= Date: Mon, 14 Aug 2023 12:33:22 -0700 To: mm-commits@vger.kernel.org, will@kernel.org, palmer@dabbelt.com, mike.kravetz@oracle.com, linux@armlinux.org.uk, catalin.marinas@arm.com, hughd@google.com, akpm@linux-foundation.org From: Andrew Morton Subject: + arm-include-asm-cacheflushh-in-asm-hugetlbh.patch added to mm-unstable branch Message-Id: <20230814193323.7C007C433C8@smtp.kernel.org> Precedence: bulk Reply-To: linux-kernel@vger.kernel.org List-ID: X-Mailing-List: mm-commits@vger.kernel.org The patch titled Subject: arm: include asm/cacheflush.h in asm/hugetlb.h has been added to the -mm mm-unstable branch. Its filename is arm-include-asm-cacheflushh-in-asm-hugetlbh.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/arm-include-asm-cacheflushh-in-asm-hugetlbh.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Hugh Dickins Subject: arm: include asm/cacheflush.h in asm/hugetlb.h Date: Sun, 13 Aug 2023 21:52:38 -0700 (PDT) Patch series "arch: include asm/cacheflush.h in asm/hugetlb.h". Three architectures are using PG_dcache_clean in their asm/hugetlb.h, but relying on accident to include the asm/cacheflush.h which defines it. This patch (of 3): PG_dcache_clean is used in asm/hugetlb.h but defined in asm/cacheflush.h: builds rely on an accident of that being included via linux/mempolicy.h, but better include it directly (like arch/sh/include/asm/hugetlb.h does). Link: https://lkml.kernel.org/r/6d2acfa4-7f44-d3b4-b0a8-5495c5985e4c@google.com Link: https://lkml.kernel.org/r/4b055d0-7b2e-72bf-9b9d-8f3f1cd312d0@google.com Signed-off-by: Hugh Dickins Cc: Catalin Marinas Cc: Mike Kravetz Cc: Palmer Dabbelt Cc: Russell King Cc: Will Deacon Signed-off-by: Andrew Morton --- arch/arm/include/asm/hugetlb.h | 1 + 1 file changed, 1 insertion(+) --- a/arch/arm/include/asm/hugetlb.h~arm-include-asm-cacheflushh-in-asm-hugetlbh +++ a/arch/arm/include/asm/hugetlb.h @@ -10,6 +10,7 @@ #ifndef _ASM_ARM_HUGETLB_H #define _ASM_ARM_HUGETLB_H +#include #include #include #include _ Patches currently in -mm which might be from hughd@google.com are arm-include-asm-cacheflushh-in-asm-hugetlbh.patch arm64-include-asm-cacheflushh-in-asm-hugetlbh.patch riscv-include-asm-cacheflushh-in-asm-hugetlbh.patch