Received: by 2002:a25:683:0:0:0:0:0 with SMTP id 125csp314183ybg; Wed, 3 Jun 2020 01:17:29 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxwzqIQsrGxcYxddnSo4MKlUgSHBBGR10g5M8AzFHvAftikNNPiXj4/pTOeVb1je58rdTSC X-Received: by 2002:a05:6402:17e6:: with SMTP id t6mr28677534edy.243.1591172249530; Wed, 03 Jun 2020 01:17:29 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1591172249; cv=none; d=google.com; s=arc-20160816; b=J8kQa33AAifJOhByXGwDdyHuOiJ70b0Gyjo4nZSjoz2BY1F1Db6IByL8mHboNodWm+ VJjiW99wfgAPlaafMTyw2JmDF8h/SP3VRYuwlLz6Pfo3Gl9LigbgSoHG0sIhCr7spDNA 6DbG93bqBbBHgJ7AEVjXKteD4y3cLG/fO4LwRWoPQcKDX2ZCOtYgGZSrf/WOBrEwotii Ed9nhPQYs/tPo6BzS2W7YDFyvApiIILj6NWlppyB50NH5EMKZQCn9RcTj6ZZsP84xhXD ju/Xnqlg0swezR3KhcBL61zvcLacwePhRB7wNRM70g9Je68iaIg4IuLBXrpwq8J9gLqE zlxw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=CdueZjYiEEvfE1BRehozzhaiRyY99HffHos/X1vVfqI=; b=GPvxjh98M33UGKUNXOeiTHr9EW8JV96U3cgmf+hI1JFzih6qCEOXCU/EtrTpCi9Gza yBzkjVNhPGGjWz8mS+x0EiwjYhls29yvqD6Gbt35jz8/xojRuvZJ36//tVB/4EliXh77 MnAmfrMusGNGcMYVO4ZJVeVZg+k/xLkpyiCwA7gHIslFZmncoEYY+1dId1PSabPqrZkJ XCm05fDuk1E5uVc2rLZURw89pe8gQJf7eRX8WzuLo67awoTz981pe7GpZ+eDa6JkBTC8 mVutAdKZZwutNHHkqKxKu5FSwhepjkBN7Ttg6JFmVIiJ/yRUbARuSg6gBdlutk5w6/p7 SoNw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id w18si711709ejn.727.2020.06.03.01.17.06; Wed, 03 Jun 2020 01:17:29 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726229AbgFCIPU (ORCPT + 99 others); Wed, 3 Jun 2020 04:15:20 -0400 Received: from relay12.mail.gandi.net ([217.70.178.232]:53721 "EHLO relay12.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725275AbgFCIPU (ORCPT ); Wed, 3 Jun 2020 04:15:20 -0400 Received: from debian.home (lfbn-gre-1-325-105.w90-112.abo.wanadoo.fr [90.112.45.105]) (Authenticated sender: alex@ghiti.fr) by relay12.mail.gandi.net (Postfix) with ESMTPSA id B7D08200008; Wed, 3 Jun 2020 08:15:16 +0000 (UTC) From: Alexandre Ghiti To: Paul Walmsley , Palmer Dabbelt , Zong Li , Anup Patel , Christoph Hellwig , linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org Cc: Alexandre Ghiti Subject: [PATCH v2 4/8] riscv: Prepare ptdump for vm layout dynamic addresses Date: Wed, 3 Jun 2020 04:11:00 -0400 Message-Id: <20200603081104.14004-5-alex@ghiti.fr> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200603081104.14004-1-alex@ghiti.fr> References: <20200603081104.14004-1-alex@ghiti.fr> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This is a preparatory patch for sv48 support that will introduce dynamic PAGE_OFFSET. Dynamic PAGE_OFFSET implies that all zones (vmalloc, vmemmap, fixaddr...) whose addresses depend on PAGE_OFFSET become dynamic and can't be used to statically initialize the array used by ptdump to identify the different zones of the vm layout. Signed-off-by: Alexandre Ghiti Reviewed-by: Anup Patel --- arch/riscv/mm/ptdump.c | 49 ++++++++++++++++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 9 deletions(-) diff --git a/arch/riscv/mm/ptdump.c b/arch/riscv/mm/ptdump.c index 7eab76a93106..7d9386a7f5c2 100644 --- a/arch/riscv/mm/ptdump.c +++ b/arch/riscv/mm/ptdump.c @@ -49,22 +49,41 @@ struct addr_marker { const char *name; }; +enum address_markers_idx { +#ifdef CONFIG_KASAN + KASAN_SHADOW_START_NR, + KASAN_SHADOW_END_NR, +#endif + FIXMAP_START_NR, + FIXMAP_END_NR, + PCI_IO_START_NR, + PCI_IO_END_NR, +#ifdef CONFIG_SPARSEMEM_VMEMMAP + VMEMMAP_START_NR, + VMEMMAP_END_NR, +#endif + VMALLOC_START_NR, + VMALLOC_END_NR, + PAGE_OFFSET_NR, + END_OF_SPACE_NR +}; + static struct addr_marker address_markers[] = { #ifdef CONFIG_KASAN {KASAN_SHADOW_START, "Kasan shadow start"}, {KASAN_SHADOW_END, "Kasan shadow end"}, #endif - {FIXADDR_START, "Fixmap start"}, - {FIXADDR_TOP, "Fixmap end"}, - {PCI_IO_START, "PCI I/O start"}, - {PCI_IO_END, "PCI I/O end"}, + {0, "Fixmap start"}, + {0, "Fixmap end"}, + {0, "PCI I/O start"}, + {0, "PCI I/O end"}, #ifdef CONFIG_SPARSEMEM_VMEMMAP - {VMEMMAP_START, "vmemmap start"}, - {VMEMMAP_END, "vmemmap end"}, + {0, "vmemmap start"}, + {0, "vmemmap end"}, #endif - {VMALLOC_START, "vmalloc() area"}, - {VMALLOC_END, "vmalloc() end"}, - {PAGE_OFFSET, "Linear mapping"}, + {0, "vmalloc() area"}, + {0, "vmalloc() end"}, + {0, "Linear mapping"}, {-1, NULL}, }; @@ -304,6 +323,18 @@ static int ptdump_init(void) { unsigned int i, j; + address_markers[FIXMAP_START_NR].start_address = FIXADDR_START; + address_markers[FIXMAP_END_NR].start_address = FIXADDR_TOP; + address_markers[PCI_IO_START_NR].start_address = PCI_IO_START; + address_markers[PCI_IO_END_NR].start_address = PCI_IO_END; +#ifdef CONFIG_SPARSEMEM_VMEMMAP + address_markers[VMEMMAP_START_NR].start_address = VMEMMAP_START; + address_markers[VMEMMAP_END_NR].start_address = VMEMMAP_END; +#endif + address_markers[VMALLOC_START_NR].start_address = VMALLOC_START; + address_markers[VMALLOC_END_NR].start_address = VMALLOC_END; + address_markers[PAGE_OFFSET_NR].start_address = PAGE_OFFSET; + for (i = 0; i < ARRAY_SIZE(pg_level); i++) for (j = 0; j < ARRAY_SIZE(pte_bits); j++) pg_level[i].mask |= pte_bits[j].mask; -- 2.20.1