Received: by 2002:a25:e74b:0:0:0:0:0 with SMTP id e72csp2188583ybh; Fri, 24 Jul 2020 06:41:59 -0700 (PDT) X-Google-Smtp-Source: ABdhPJy38fHjjk22TGKYqZ/HYdVoGbMF2/kC6+W5SoQT3w3vEJr4deIsM0eaF6CNYG7ifzcFe9EQ X-Received: by 2002:a17:907:385:: with SMTP id ss5mr8194169ejb.496.1595598119807; Fri, 24 Jul 2020 06:41:59 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1595598119; cv=none; d=google.com; s=arc-20160816; b=Tpn2vobzRr0LRxq+4sVe7RgWzZx7hyBYj7QFaLgBkitx/982S7Me5Juru96psdSv2M SytlZqnlyjQsalLM2i1NYSrihFZatQ9gD+8qjex3xZmSQdFxqGYoEqJ6i8eq6h8fXQCZ M+BoVRDUkWex+OerTvqpXBy50vPZeZYGnvxtWlK0FjJb65LbbC0hk1uD8RnWlbdJcjWV RB/Gk4CwRodo/57N7DR+FqGpcDaUXjp+GFGufGSKW3EWSz8PZFcOifO/8Z31Hc5tlopB DcoQW6ngQhr5eIuRsjQ1HjcyVbYD8vSNQb8Mvsv8HZajIE9eP1ymE8kY5nH7ROjtZFze 4Q1w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=FH6avawEeiNGdmcoHXVO8sWNyylJCnjwuijOoN0U03A=; b=jx2t2ZI5XCLtmkxBaKx3XbAHjLmZtxN5/GeuQNuQJAS89vW1c3EKAaPRMnSayOXBMl W5GUjknFv4VG4s10nMsFS159H7BHGww9y4dcksnifiBSOkHsON+h/vnmzxB4Pbsgxsa7 zRfjQJ/+5wG9MBUf6/snKPCxtj/G1vUwO15W3dSz+3gA394ABL+s+z5ZwMip1CfDaqNO 2sjbyvlYDAqY+xtHNVHPTFOZ46j/16d+xDwRBY99itoc3EMJOdwVQOE6maJsd9lBkl8W +ltAf4TxxYWiSB+qnVqsgYP75ukiky0sDzRwcVjoKjjZ8eTmx/2pvs04AEK+PlfyMV9J dhcQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id z89si519934ede.516.2020.07.24.06.41.37; Fri, 24 Jul 2020 06:41:59 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727023AbgGXNlS (ORCPT + 99 others); Fri, 24 Jul 2020 09:41:18 -0400 Received: from verein.lst.de ([213.95.11.211]:35719 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726235AbgGXNlR (ORCPT ); Fri, 24 Jul 2020 09:41:17 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id B8C5168AFE; Fri, 24 Jul 2020 15:41:14 +0200 (CEST) Date: Fri, 24 Jul 2020 15:41:14 +0200 From: Christoph Hellwig To: Amit Pundir Cc: Nicolas Saenz Julienne , Christoph Hellwig , Marek Szyprowski , Robin Murphy , David Rientjes , linux-rpi-kernel@lists.infradead.org, jeremy.linton@arm.com, iommu@lists.linux-foundation.org, lkml , John Stultz , Sumit Semwal Subject: Re: [PATCH] dma-pool: Do not allocate pool memory from CMA Message-ID: <20200724134114.GA3152@lst.de> References: <550b30a86c0785049d24c945e2c6628d491cee3a.camel@suse.de> <011994f8a717a00dcd9ed7682a1ddeb421c2c43f.camel@suse.de> <01831596e4a2a6c9c066138b23bd30435f8e5569.camel@suse.de> <6db722947546221ed99d3f473f78e1a6de65d7d6.camel@suse.de> <0dc1e922bf87fa73790e7471b3974528dd261486.camel@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.17 (2007-11-01) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Yes, the iommu is an interesting case, and the current code is wrong for that. Can you try the patch below? It contains a modified version of Nicolas' patch to try CMA again for the expansion and a new (for now hackish) way to not apply the addressability check for dma-iommu allocations. diff --git a/kernel/dma/pool.c b/kernel/dma/pool.c index 6bc74a2d51273e..ec5e525d2b9309 100644 --- a/kernel/dma/pool.c +++ b/kernel/dma/pool.c @@ -3,7 +3,9 @@ * Copyright (C) 2012 ARM Ltd. * Copyright (C) 2020 Google LLC */ +#include #include +#include #include #include #include @@ -55,6 +57,31 @@ static void dma_atomic_pool_size_add(gfp_t gfp, size_t size) pool_size_kernel += size; } +static bool cma_in_zone(gfp_t gfp) +{ + phys_addr_t end; + unsigned long size; + struct cma *cma; + + cma = dev_get_cma_area(NULL); + if (!cma) + return false; + + size = cma_get_size(cma); + if (!size) + return false; + end = cma_get_base(cma) - memblock_start_of_DRAM() + size - 1; + + /* CMA can't cross zone boundaries, see cma_activate_area() */ + if (IS_ENABLED(CONFIG_ZONE_DMA) && (gfp & GFP_DMA) && + end <= DMA_BIT_MASK(zone_dma_bits)) + return true; + if (IS_ENABLED(CONFIG_ZONE_DMA32) && (gfp & GFP_DMA32) && + end <= DMA_BIT_MASK(32)) + return true; + return true; +} + static int atomic_pool_expand(struct gen_pool *pool, size_t pool_size, gfp_t gfp) { @@ -68,7 +95,11 @@ static int atomic_pool_expand(struct gen_pool *pool, size_t pool_size, do { pool_size = 1 << (PAGE_SHIFT + order); - page = alloc_pages(gfp, order); + if (cma_in_zone(gfp)) + page = dma_alloc_from_contiguous(NULL, 1 << order, + order, false); + if (!page) + page = alloc_pages(gfp, order); } while (!page && order-- > 0); if (!page) goto out; @@ -251,7 +282,11 @@ void *dma_alloc_from_pool(struct device *dev, size_t size, continue; phys = gen_pool_virt_to_phys(pool, val); - if (dma_coherent_ok(dev, phys, size)) + /* + * Only apply the addressability check for dma-direct. + * This is a nasty hack and won't work e.g. for arm. + */ + if (get_dma_ops(dev) || dma_coherent_ok(dev, phys, size)) break; gen_pool_free(pool, val, size);