Received: by 2002:a05:6a10:9e8c:0:0:0:0 with SMTP id y12csp627344pxx; Thu, 29 Oct 2020 10:28:56 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxObfIw6TleRN7wqyP0zGg1Ef/bP3T3bqR7p+Yfx7s/8HVSG/rzksgcJDJz+nxmnlQU1VmN X-Received: by 2002:a17:906:3150:: with SMTP id e16mr5079793eje.266.1603992536138; Thu, 29 Oct 2020 10:28:56 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1603992536; cv=none; d=google.com; s=arc-20160816; b=YPNxZDKK0N0v/tPVQ9BsdEBGn4jOuXjt1qDFx9lhG2VF/+2P4OfmVL5jBLs0GXC4Lm oXt5X9Ax5PG2rbkoaS8/KzZEq5Q6CXYfJoYjEZ6G7WPryWpHqvGI8NwuZg+2kekMCUgn sfGoouQR7iie4qoCz17p7o/dUC1Z/X9zDSJJxKIbNHDNq0hnuawA0EpGryeSFKEKqdQs J/HXDq2EF75x6+KpmClm4Gt/ytFSstDmjEt6joPSdm1/rJtQDTxcJSQofXvo//fYvdDE xVEcRWRH1crDTT/dRx5TndqwB05kI3U36VZzVjmoMoaVpMEaqfKJsHvMeFU+fs1WX+yA hppA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=lvW6pYs9tJofhCTWmYtOYeQ8ueu//iBUxaQr87uabw8=; b=mX2jGUP4ldgzkhBNRyYbTmh0sCvR5QdmuNrCMVoKv/t/y+/PVlEdMEGw5IUdtLF3bs pUETOfjX7fMT78/1TqK4z6jkC2ChG/9kDYFWemJKXzKzxDcCMXjE61POjwvlxkgy/v2L fI8gK02BSI4mrIaCWldb+u62sVqcPkrMqo6ACbM96mKDa9zIt+bpFE9oCIFChof80L8y /VSA3XjlDL9bDYf5jAA9nCr2/MtdhDsGe/X1gjDelgblt4QDpGMZ1pe/zUpeMDLJnUI0 8jeu02TG0GUMy6Yi8cAOrivRE0X2LUAu7IGySHN8jGqUqAtKaALR1FtGF+D5FeusfYiI 2rsg== 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 d26si2174092ejz.211.2020.10.29.10.28.33; Thu, 29 Oct 2020 10:28:56 -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 S1728039AbgJ2R0P (ORCPT + 99 others); Thu, 29 Oct 2020 13:26:15 -0400 Received: from mx2.suse.de ([195.135.220.15]:56322 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727913AbgJ2R0H (ORCPT ); Thu, 29 Oct 2020 13:26:07 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id DE553AC9A; Thu, 29 Oct 2020 17:26:06 +0000 (UTC) From: Nicolas Saenz Julienne To: robh+dt@kernel.org, catalin.marinas@arm.com, hch@lst.de, ardb@kernel.org, linux-kernel@vger.kernel.org, Andrew Morton , Paul Walmsley , Palmer Dabbelt , Albert Ou Cc: 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, will@kernel.org, lorenzo.pieralisi@arm.com, guohanjun@huawei.com, Nicolas Saenz Julienne , linux-mm@kvack.org, linux-riscv@lists.infradead.org Subject: [PATCH v5 7/7] mm: Remove examples from enum zone_type comment Date: Thu, 29 Oct 2020 18:25:50 +0100 Message-Id: <20201029172550.3523-8-nsaenzjulienne@suse.de> X-Mailer: git-send-email 2.29.0 In-Reply-To: <20201029172550.3523-1-nsaenzjulienne@suse.de> References: <20201029172550.3523-1-nsaenzjulienne@suse.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org We can't really list every setup in common code. On top of that they are unlikely to stay true for long as things change in the arch trees independently of this comment. Suggested-by: Christoph Hellwig Signed-off-by: Nicolas Saenz Julienne Reviewed-by: Christoph Hellwig --- include/linux/mmzone.h | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index fb3bf696c05e..9d0c454d23cd 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h @@ -354,26 +354,6 @@ enum zone_type { * DMA mask is assumed when ZONE_DMA32 is defined. Some 64-bit * platforms may need both zones as they support peripherals with * different DMA addressing limitations. - * - * Some examples: - * - * - i386 and x86_64 have a fixed 16M ZONE_DMA and ZONE_DMA32 for the - * rest of the lower 4G. - * - * - 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. - * - * - powerpc only uses ZONE_DMA, the size, up to 2G, may vary - * depending on the specific device. - * - * - s390 uses ZONE_DMA fixed to the lower 2G. - * - * - ia64 and riscv only use ZONE_DMA32. - * - * - parisc uses neither. */ #ifdef CONFIG_ZONE_DMA ZONE_DMA, -- 2.29.0