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 X-Spam-Level: X-Spam-Status: No, score=-8.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C0CD3C49EA6 for ; Sat, 26 Jun 2021 10:40:58 +0000 (UTC) Received: from lists.ozlabs.org (lists.ozlabs.org [112.213.38.117]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 62E506162A for ; Sat, 26 Jun 2021 10:40:58 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 62E506162A Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=ellerman.id.au Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4GBr4p0HxTz3dYt for ; Sat, 26 Jun 2021 20:40:58 +1000 (AEST) Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=ozlabs.org (client-ip=203.11.71.1; helo=ozlabs.org; envelope-from=michael@ozlabs.org; receiver=) Received: from ozlabs.org (bilbo.ozlabs.org [203.11.71.1]) (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 lists.ozlabs.org (Postfix) with ESMTPS id 4GBr2Q4Wrfz3c02 for ; Sat, 26 Jun 2021 20:38:54 +1000 (AEST) Received: by ozlabs.org (Postfix, from userid 1034) id 4GBr2P2tvPz9sxS; Sat, 26 Jun 2021 20:38:53 +1000 (AEST) From: Michael Ellerman To: Paul Mackerras , Steven Price , akpm@linux-foundation.org, Michael Ellerman , Benjamin Herrenschmidt , Christophe Leroy , dja@axtens.net In-Reply-To: References: Subject: Re: [PATCH v2 0/4] Convert powerpc to GENERIC_PTDUMP Message-Id: <162470383963.3589875.4353977558954497976.b4-ty@ellerman.id.au> Date: Sat, 26 Jun 2021 20:37:19 +1000 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-arch@vger.kernel.org, linux-mm@kvack.org, Oliver O'Halloran , linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" On Mon, 19 Apr 2021 10:47:24 +0000 (UTC), Christophe Leroy wrote: > This series converts powerpc to generic PTDUMP. > > For that, we first need to add missing hugepd support > to pagewalk and ptdump. > > v2: > - Reworked the pagewalk modification to add locking and check ops->pte_entry > - Modified powerpc early IO mapping to have gaps between mappings > - Removed the logic that checked for contiguous physical memory > - Removed the articial level calculation in ptdump_pte_entry(), level 4 is ok for all. > - Removed page_size argument to note_page() > > [...] Patches 2 and 4 pplied to powerpc/next. [2/4] powerpc/mm: Leave a gap between early allocated IO areas https://git.kernel.org/powerpc/c/57307f1b6edd781fba2bf9f7ec5f4d17a881ea54 [3/4] powerpc/mm: Properly coalesce pages in ptdump https://git.kernel.org/powerpc/c/6ca6512c716afd6e37281372c4c35aa6afd71d10 cheers