From patchwork Sat Oct 8 14:05:04 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Liu Shixin X-Patchwork-Id: 13001778 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 A7B0BC43217 for ; Sat, 8 Oct 2022 13:16:19 +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=za73nFo2u5YNlHqxh0a5mGR5CmkVDJjIYFuAkSGxcsE=; b=crYijprI9RZhL/ CYt/HgF+jnWNgDxUEP2L+YfoVqTYKjH6dE1Acm5DIiAmIrcGJd1zKbNKevqYhGxoK0ZzJV7KOrrxi 7fQFXR6fYQ+S4wmUf0hMdy+INUmcrD9YZhMdpu38MRp3Y0KkqRyh/d9hN6vqZLp94SZ+AmKprCEmh I5rWU3/UnBMpoS+GFcZbZVoxuROQSu8Tgt1fbeJi9xtB5Tm5YmxGUMeft5Q1DHkV5YH4eGFakmqRY xdPDVxNOupxA4v5E3qbrZxqkOLTw1a2EXgjDI6Nueo4wX2vSN3flYIfaBgZrCFIneDjuBoUFi9Hnj 6mzhHy0PepXGkEePxvyg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1oh9gX-00DF5q-6k; Sat, 08 Oct 2022 13:16:09 +0000 Received: from szxga01-in.huawei.com ([45.249.212.187]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1oh9gT-00DF4J-7Y for linux-riscv@lists.infradead.org; Sat, 08 Oct 2022 13:16:07 +0000 Received: from dggpemm500024.china.huawei.com (unknown [172.30.72.55]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4Ml5Cw3yNTzlXdM; Sat, 8 Oct 2022 21:11:24 +0800 (CST) Received: from dggpemm100009.china.huawei.com (7.185.36.113) by dggpemm500024.china.huawei.com (7.185.36.203) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.31; Sat, 8 Oct 2022 21:15:54 +0800 Received: from huawei.com (10.175.113.32) by dggpemm100009.china.huawei.com (7.185.36.113) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.31; Sat, 8 Oct 2022 21:15:53 +0800 From: Liu Shixin To: Conor Dooley , Kefeng Wang , Jonathan Corbet , Paul Walmsley , Palmer Dabbelt , Albert Ou CC: , , , Liu Shixin Subject: [PATCH v2 0/2] riscv: Support HAVE_ARCH_HUGE_VMAP and HAVE_ARCH_HUGE_VMALLOC Date: Sat, 8 Oct 2022 22:05:04 +0800 Message-ID: <20221008140506.1066805-1-liushixin2@huawei.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Originating-IP: [10.175.113.32] X-ClientProxiedBy: dggems704-chm.china.huawei.com (10.3.19.181) To dggpemm100009.china.huawei.com (7.185.36.113) X-CFilter-Loop: Reflected X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20221008_061605_484505_FB1E8878 X-CRM114-Status: UNSURE ( 6.94 ) 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: , Sender: "linux-riscv" Errors-To: linux-riscv-bounces+linux-riscv=archiver.kernel.org@lists.infradead.org Since riscv64 has already support SATP_MODE_57 by default, it is time to support more hugepage-related features. These two patches will enable HAVE_ARCH_HUGE_VMAP and HAVE_ARCH_HUGE_VMALLOC. v1->v2: Fix the build error reported by kernel-test. Liu Shixin (2): riscv: Enable HAVE_ARCH_HUGE_VMAP for 64BIT riscv: Enable HAVE_ARCH_HUGE_VMALLOC for 64BIT .../features/vm/huge-vmap/arch-support.txt | 2 +- arch/riscv/Kconfig | 2 + arch/riscv/include/asm/vmalloc.h | 18 ++++ arch/riscv/mm/Makefile | 1 + arch/riscv/mm/pgtable.c | 83 +++++++++++++++++++ 5 files changed, 105 insertions(+), 1 deletion(-) create mode 100644 arch/riscv/mm/pgtable.c Reviewed-by: Björn Töpel Tested-by: Björn Töpel