Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751729AbdCRRBo (ORCPT ); Sat, 18 Mar 2017 13:01:44 -0400 Received: from mail-wr0-f174.google.com ([209.85.128.174]:35368 "EHLO mail-wr0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751782AbdCRRBV (ORCPT ); Sat, 18 Mar 2017 13:01:21 -0400 Date: Fri, 17 Mar 2017 20:57:14 +0300 From: "Kirill A. Shutemov" To: "Aneesh Kumar K.V" Cc: "Kirill A. Shutemov" , Linus Torvalds , Andrew Morton , x86@kernel.org, Thomas Gleixner , Ingo Molnar , Arnd Bergmann , "H. Peter Anvin" , Andi Kleen , Dave Hansen , Andy Lutomirski , Michal Hocko , linux-arch@vger.kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 26/26] x86/mm: allow to have userspace mappings above 47-bits Message-ID: <20170317175714.3bvpdylaaudf4ig2@node.shutemov.name> References: <20170313055020.69655-1-kirill.shutemov@linux.intel.com> <20170313055020.69655-27-kirill.shutemov@linux.intel.com> <87a88jg571.fsf@skywalker.in.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87a88jg571.fsf@skywalker.in.ibm.com> User-Agent: NeoMutt/20170306 (1.8.0) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1580 Lines: 37 On Fri, Mar 17, 2017 at 11:23:54PM +0530, Aneesh Kumar K.V wrote: > "Kirill A. Shutemov" writes: > > > On x86, 5-level paging enables 56-bit userspace virtual address space. > > Not all user space is ready to handle wide addresses. It's known that > > at least some JIT compilers use higher bits in pointers to encode their > > information. It collides with valid pointers with 5-level paging and > > leads to crashes. > > > > To mitigate this, we are not going to allocate virtual address space > > above 47-bit by default. > > > > But userspace can ask for allocation from full address space by > > specifying hint address (with or without MAP_FIXED) above 47-bits. > > > > If hint address set above 47-bit, but MAP_FIXED is not specified, we try > > to look for unmapped area by specified address. If it's already > > occupied, we look for unmapped area in *full* address space, rather than > > from 47-bit window. > > > > This approach helps to easily make application's memory allocator aware > > about large address space without manually tracking allocated virtual > > address space. > > > > So if I have done a successful mmap which returned > 128TB what should a > following mmap(0,...) return ? Should that now search the *full* address > space or below 128TB ? No, I don't think so. And this implementation doesn't do this. It's safer this way: if an library can't handle high addresses, it's better not to switch it automagically to full address space if other part of the process requested high address. -- Kirill A. Shutemov