Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752906AbbBRUoW (ORCPT ); Wed, 18 Feb 2015 15:44:22 -0500 Received: from mail-wi0-f174.google.com ([209.85.212.174]:48147 "EHLO mail-wi0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752622AbbBRUoT (ORCPT ); Wed, 18 Feb 2015 15:44:19 -0500 Date: Wed, 18 Feb 2015 21:44:14 +0100 From: Ingo Molnar To: Toshi Kani Cc: akpm@linux-foundation.org, hpa@zytor.com, tglx@linutronix.de, mingo@redhat.com, arnd@arndb.de, linux-mm@kvack.org, x86@kernel.org, linux-kernel@vger.kernel.org, Elliott@hp.com Subject: Re: [PATCH v2 6/7] x86, mm: Support huge I/O mappings on x86 Message-ID: <20150218204414.GA20943@gmail.com> References: <1423521935-17454-1-git-send-email-toshi.kani@hp.com> <1423521935-17454-7-git-send-email-toshi.kani@hp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1423521935-17454-7-git-send-email-toshi.kani@hp.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 936 Lines: 32 * Toshi Kani wrote: > This patch implements huge I/O mapping capability interfaces on x86. > +#ifdef CONFIG_HUGE_IOMAP > +#ifdef CONFIG_X86_64 > +#define IOREMAP_MAX_ORDER (PUD_SHIFT) > +#else > +#define IOREMAP_MAX_ORDER (PMD_SHIFT) > +#endif > +#endif /* CONFIG_HUGE_IOMAP */ > +#ifdef CONFIG_HUGE_IOMAP Hm, so why is there a Kconfig option for this? It just complicates things. For example the kernel already defaults to mapping itself with as large mappings as possible, without a Kconfig entry for it. There's no reason to make this configurable - and quite a bit of complexity in the patches comes from this configurability. Thanks, Ingo -- 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/