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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id AADC9C433EF for ; Thu, 12 May 2022 10:38:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1352697AbiELKiM (ORCPT ); Thu, 12 May 2022 06:38:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46390 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240318AbiELKh6 (ORCPT ); Thu, 12 May 2022 06:37:58 -0400 Received: from outbound-smtp02.blacknight.com (outbound-smtp02.blacknight.com [81.17.249.8]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1ADB75BE45 for ; Thu, 12 May 2022 03:37:52 -0700 (PDT) Received: from mail.blacknight.com (pemlinmail01.blacknight.ie [81.17.254.10]) by outbound-smtp02.blacknight.com (Postfix) with ESMTPS id 85F1FBB1DC for ; Thu, 12 May 2022 11:37:51 +0100 (IST) Received: (qmail 9959 invoked from network); 12 May 2022 10:37:51 -0000 Received: from unknown (HELO techsingularity.net) (mgorman@techsingularity.net@[84.203.198.246]) by 81.17.254.9 with ESMTPSA (AES256-SHA encrypted, authenticated); 12 May 2022 10:37:51 -0000 Date: Thu, 12 May 2022 11:37:48 +0100 From: Mel Gorman To: Hyeonggon Yoo <42.hyeyoo@gmail.com> Cc: Dave Hansen , Tom Lendacky , Rick Edgecombe , Dave Hansen , Andy Lutomirski , Peter Zijlstra , Thomas Gleixner , Ingo Molnar , Borislav Petkov , x86@kernel.org, "H. Peter Anvin" , "Kirill A. Shutemov" , Tianyu Lan , "Aneesh Kumar K.V" , linux-kernel@vger.kernel.org, linux-mm@kvack.org, vbabka@suse.cz, akpm@linux-foundation.org, willy@infradead.org Subject: Re: Is _PAGE_PROTNONE set only for user mappings? Message-ID: <20220512103748.GH3441@techsingularity.net> References: <20220506051940.156952-1-42.hyeyoo@gmail.com> <56f89895-601e-44c9-bda4-5fae6782e27e@amd.com> <5fe161cb-6c55-6c4d-c208-16c77e115d3f@amd.com> <8c2735ac-0335-6e2a-8341-8266d5d13c30@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, May 11, 2022 at 02:20:45PM +0900, Hyeonggon Yoo wrote: > > pgprot_t vm_get_page_prot(unsigned long vm_flags) > > { > > pgprot_t ret = __pgprot(pgprot_val(protection_map[vm_flags & > > (VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]) | > > pgprot_val(arch_vm_get_page_prot(vm_flags))); > > > > return arch_filter_pgprot(ret); > > } > > EXPORT_SYMBOL(vm_get_page_prot); > > I guess it's only set for processes' VMA if no caller is abusing > vm_get_page_prot() for kernel mappings. > > But yeah, just quick guessing does not make us convinced. > Let's Cc people working on mm. > > If kernel never uses _PAGE_PROTNONE for kernel mappings, it's just okay > not to clear _PAGE_GLOBAL at first in __change_page_attr() if it's not user address, > because no user will confuse _PAGE_GLOBAL as _PAGE_PROTNONE if it's kernel > address. right? > I'm not aware of a case where _PAGE_BIT_PROTNONE is used for a kernel address expecting PROT_NONE semantics instead of the global bit. NUMA Balancing is not going to accidentally treat a kernel address as if it's a NUMA hinting fault. By the time a fault is determining if a PTE access is a numa hinting fault or accesssing a PROT_NONE region, it has been established that it is a userspace address backed by a valid VMA. -- Mel Gorman SUSE Labs