Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754019AbaFXOjI (ORCPT ); Tue, 24 Jun 2014 10:39:08 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43421 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753709AbaFXOjF (ORCPT ); Tue, 24 Jun 2014 10:39:05 -0400 Message-ID: <1403620714.755.69.camel@deneb.redhat.com> Subject: Re: [PATCH] arm64: make CONFIG_ZONE_DMA user settable From: Mark Salter To: Catalin Marinas Cc: Will Deacon , "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" Date: Tue, 24 Jun 2014 10:38:34 -0400 In-Reply-To: <20140624141455.GE4489@arm.com> References: <1403499924-11214-1-git-send-email-msalter@redhat.com> <20140623110937.GB15907@arm.com> <1403529423.755.49.camel@deneb.redhat.com> <20140624141455.GE4489@arm.com> Organization: Red Hat, Inc Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2014-06-24 at 15:14 +0100, Catalin Marinas wrote: > On Mon, Jun 23, 2014 at 02:17:03PM +0100, Mark Salter wrote: > > On Mon, 2014-06-23 at 12:09 +0100, Catalin Marinas wrote: > > > My proposal (in the absence of any kind of description) is to still > > > create a ZONE_DMA if we have DMA memory below 32-bit, otherwise just add > > > everything (>32-bit) to ZONE_DMA. Basically an extension from your CMA > > > patch, make dma_phys_limit static in that file and set it to > > > memblock_end_of_DRAM() if no 32-bit DMA. Re-use it in the > > > zone_sizes_init() function for ZONE_DMA (maybe with a pr_info for no > > > 32-bit only DMA zone). > > > > There's a performance issue with all memory being in ZONE_DMA. It means > > all normal allocations will fail on ZONE_NORMAL and then have to fall > > back to ZONE_DMA. It would be better to put some percentage of memory > > in ZONE_DMA. > > Is the performance penalty real or just theoretical? I haven't run any > benchmarks myself. > It is real insofar as you must eat cycles eliminating ZONE_NORMAL from consideration in the page allocation hot path. How much that really costs, I don't know. But it seems like it could be easily avoided by limiting ZONE_DMA size. Is there any reason it needs to be larger than 4GiB? -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/