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=-11.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT autolearn=ham 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 A6908C433E0 for ; Tue, 9 Mar 2021 17:42:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 71C1365239 for ; Tue, 9 Mar 2021 17:42:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231382AbhCIRln (ORCPT ); Tue, 9 Mar 2021 12:41:43 -0500 Received: from mx2.suse.de ([195.135.220.15]:50830 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231438AbhCIRlU (ORCPT ); Tue, 9 Mar 2021 12:41:20 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id E769DAC1F; Tue, 9 Mar 2021 17:41:18 +0000 (UTC) From: Oscar Salvador To: Andrew Morton Cc: David Hildenbrand , Dave Hansen , Andy Lutomirski , Peter Zijlstra , Thomas Gleixner , Ingo Molnar , Borislav Petkov , x86@kernel.org, "H . Peter Anvin" , Michal Hocko , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Oscar Salvador Subject: [PATCH v5 0/4] Cleanup and fixups for vmemmap handling Date: Tue, 9 Mar 2021 18:41:09 +0100 Message-Id: <20210309174113.5597-1-osalvador@suse.de> X-Mailer: git-send-email 2.13.7 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, this series contains cleanups to remove dead code that handles unaligned cases for 4K and 1GB pages (patch#1 and patch#2) when removing the vemmmap range, and a fix (patch#3) to handle the case when two vmemmap ranges intersect the same PMD. More details can be found in the respective changelogs. v4 -> v5: - Rebase on top of 5.12-rc2 - Addessed feedback from Dave - Split previous patch#3 into core-changes (current patch#3) and the optimization (current patch#4) - Document better what is unused_pmd_start and its optimization - Added Acked-by for patch#1 v3 -> v4: - Rebase on top of 5.12-rc1 as Andrew suggested - Added last Reviewed-by for the last patch v2 -> v3: - Make sure we do not clear the PUD entry in case we are not removing the whole range. - Add Reviewed-by v1 -> v2: - Remove dead code in remove_pud_table as well - Addessed feedback by David - Place the vmemap functions that take care of unaligned PMDs within CONFIG_SPARSEMEM_VMEMMAP Oscar Salvador (4): x86/vmemmap: Drop handling of 4K unaligned vmemmap range x86/vmemmap: Drop handling of 1GB vmemmap ranges x86/vmemmap: Handle unpopulated sub-pmd ranges x86/vmemmap: Optimize for consecutive sections in partial populated PMDs arch/x86/mm/init_64.c | 198 +++++++++++++++++++++++++++++++------------------- 1 file changed, 124 insertions(+), 74 deletions(-) -- 2.16.3