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 X-Spam-Level: X-Spam-Status: No, score=-11.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5A08CC43467 for ; Thu, 15 Oct 2020 05:40:32 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 9B0812224A for ; Thu, 15 Oct 2020 05:40:31 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 9B0812224A Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=lst.de Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 86DA96B0062; Thu, 15 Oct 2020 01:40:30 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 81D906B0068; Thu, 15 Oct 2020 01:40:30 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 7350A6B006E; Thu, 15 Oct 2020 01:40:30 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0177.hostedemail.com [216.40.44.177]) by kanga.kvack.org (Postfix) with ESMTP id 4793C6B0062 for ; Thu, 15 Oct 2020 01:40:30 -0400 (EDT) Received: from smtpin12.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay02.hostedemail.com (Postfix) with ESMTP id D84883626 for ; Thu, 15 Oct 2020 05:40:29 +0000 (UTC) X-FDA: 77373059778.12.skin73_2d11bc927212 Received: from filter.hostedemail.com (10.5.16.251.rfc1918.com [10.5.16.251]) by smtpin12.hostedemail.com (Postfix) with ESMTP id AEABA18015D97 for ; Thu, 15 Oct 2020 05:40:29 +0000 (UTC) X-HE-Tag: skin73_2d11bc927212 X-Filterd-Recvd-Size: 2274 Received: from verein.lst.de (verein.lst.de [213.95.11.211]) by imf05.hostedemail.com (Postfix) with ESMTP for ; Thu, 15 Oct 2020 05:40:28 +0000 (UTC) Received: by verein.lst.de (Postfix, from userid 2407) id 6CD5C68BEB; Thu, 15 Oct 2020 07:40:26 +0200 (CEST) Date: Thu, 15 Oct 2020 07:40:26 +0200 From: Christoph Hellwig To: Nicolas Saenz Julienne Cc: robh+dt@kernel.org, catalin.marinas@arm.com, hch@lst.de, ardb@kernel.org, linux-kernel@vger.kernel.org, Andrew Morton , robin.murphy@arm.com, linux-arm-kernel@lists.infradead.org, linux-rpi-kernel@lists.infradead.org, jeremy.linton@arm.com, iommu@lists.linux-foundation.org, devicetree@vger.kernel.org, linux-mm@kvack.org Subject: Re: [PATCH v3 8/8] mm: Update DMA zones description Message-ID: <20201015054026.GC12218@lst.de> References: <20201014191211.27029-1-nsaenzjulienne@suse.de> <20201014191211.27029-9-nsaenzjulienne@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201014191211.27029-9-nsaenzjulienne@suse.de> User-Agent: Mutt/1.5.17 (2007-11-01) X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: On Wed, Oct 14, 2020 at 09:12:10PM +0200, Nicolas Saenz Julienne wrote: > The default behavior for arm64 changed, so reflect that. > > Signed-off-by: Nicolas Saenz Julienne > Acked-by: Catalin Marinas > --- > include/linux/mmzone.h | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h > index fb3bf696c05e..4ee2306351b9 100644 > --- a/include/linux/mmzone.h > +++ b/include/linux/mmzone.h > @@ -363,8 +363,9 @@ enum zone_type { > * - arm only uses ZONE_DMA, the size, up to 4G, may vary depending on > * the specific device. > * > - * - arm64 has a fixed 1G ZONE_DMA and ZONE_DMA32 for the rest of the > - * lower 4G. > + * - arm64 uses a single 4GB ZONE_DMA, except on the Raspberry Pi 4, > + * in which ZONE_DMA covers the first GB and ZONE_DMA32 the rest of > + * the lower 4GB. Honestly I think this comment just needs to go away. We can't really list every setup in a comment in common code.