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=-2.3 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=no 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 086C9C433DF for ; Fri, 15 May 2020 13:03:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E129020767 for ; Fri, 15 May 2020 13:03:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726140AbgEONDS (ORCPT ); Fri, 15 May 2020 09:03:18 -0400 Received: from mx2.suse.de ([195.135.220.15]:58712 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726371AbgEONDS (ORCPT ); Fri, 15 May 2020 09:03:18 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 30290ABC7; Fri, 15 May 2020 13:03:19 +0000 (UTC) Date: Fri, 15 May 2020 15:03:13 +0200 From: Joerg Roedel To: Andy Lutomirski Cc: Joerg Roedel , X86 ML , "H. Peter Anvin" , Dave Hansen , Peter Zijlstra , "Rafael J. Wysocki" , Arnd Bergmann , Andrew Morton , Steven Rostedt , Vlastimil Babka , Michal Hocko , Matthew Wilcox , LKML , Linux ACPI , linux-arch , Linux-MM Subject: Re: [PATCH v2 0/7] mm: Get rid of vmalloc_sync_(un)mappings() Message-ID: <20200515130313.GI8135@suse.de> References: <20200513152137.32426-1-joro@8bytes.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org On Wed, May 13, 2020 at 09:01:04AM -0700, Andy Lutomirski wrote: > I would love to see a followup patch that preallocates the vmalloc > region on 64-bit and compiles out pgd_list and all of the associated > gunk. Looked a bit into this, with pre-allocation and a few more changes all but one users of pgd_list and pgd_lock can be get rid of on x86-64. But there is the XEN-PV code which also needs to traverse pgd_list, and I am not sure how to get rid of that. Regards, Joerg