From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf0-f197.google.com (mail-pf0-f197.google.com [209.85.192.197]) by kanga.kvack.org (Postfix) with ESMTP id D76066B0003 for ; Fri, 27 Apr 2018 12:18:15 -0400 (EDT) Received: by mail-pf0-f197.google.com with SMTP id c4so1949147pfg.22 for ; Fri, 27 Apr 2018 09:18:15 -0700 (PDT) Received: from bombadil.infradead.org (bombadil.infradead.org. [2607:7c80:54:e::133]) by mx.google.com with ESMTPS id n34-v6si1520420pld.91.2018.04.27.09.18.14 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 27 Apr 2018 09:18:14 -0700 (PDT) Date: Fri, 27 Apr 2018 09:18:13 -0700 From: Matthew Wilcox Subject: Re: [LSF/MM TOPIC NOTES] x86 ZONE_DMA love Message-ID: <20180427161813.GD8161@bombadil.infradead.org> References: <20180426215406.GB27853@wotan.suse.de> <20180427053556.GB11339@infradead.org> <20180427071843.GB17484@dhcp22.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: owner-linux-mm@kvack.org List-ID: To: Christopher Lameter Cc: Michal Hocko , Christoph Hellwig , "Luis R. Rodriguez" , linux-mm@kvack.org, Jan Kara , matthew@wil.cx, x86@kernel.org, luto@amacapital.net, martin.petersen@oracle.com, jthumshirn@suse.de, broonie@kernel.org, linux-spi@vger.kernel.org, linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org, "lsf-pc@lists.linux-foundation.org" On Fri, Apr 27, 2018 at 11:07:07AM -0500, Christopher Lameter wrote: > Well it looks like what we are using it for is to force allocation from > low physical memory if we fail to obtain proper memory through a normal > channel. The use of ZONE_DMA is only there for emergency purposes. > I think we could subsitute ZONE_DMA32 on x87 without a problem. > > Which means that ZONE_DMA has no purpose anymore. > > Can we make ZONE_DMA on x86 refer to the low 32 bit physical addresses > instead and remove ZONE_DMA32? > > That would actually improve the fallback because you have more memory for > the old devices. Some devices have incredibly bogus hardware like 28 bit addressing or 39 bit addressing. We don't have a good way to allocate memory by physical address other than than saying "GFP_DMA for anything less than 32, GFP_DMA32 (or GFP_KERNEL on 32-bit) for anything less than 64 bit". Even CMA doesn't have a "cma_alloc_phys()". Maybe that's the right place to put such an allocation API.