From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755339AbbICMRH (ORCPT ); Thu, 3 Sep 2015 08:17:07 -0400 Received: from mx1.redhat.com ([209.132.183.28]:44454 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755186AbbICMRE (ORCPT ); Thu, 3 Sep 2015 08:17:04 -0400 Message-ID: <55E83A3E.3030000@redhat.com> Date: Thu, 03 Sep 2015 08:17:02 -0400 From: Prarit Bhargava User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: "Luis R. Rodriguez" , Stuart Hayes CC: tglx@linutronix.de, mingo@redhat.com, "H. Peter Anvin" , linux-kernel@vger.kernel.org, x86@kernel.org, mcgrof@do-not-panic.com, Toshi Kani Subject: Re: Fwd: [PATCH] x86: Use larger chunks in mtrr_cleanup References: <55E477DE.2060106@gmail.com> <55E47B4D.1050103@gmail.com> <20150903024542.GS8051@wotan.suse.de> In-Reply-To: <20150903024542.GS8051@wotan.suse.de> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 09/02/2015 10:45 PM, Luis R. Rodriguez wrote: > On Mon, Aug 31, 2015 at 11:05:33AM -0500, Stuart Hayes wrote: >> Increase the range of chunk sizes tried in mtrr_cleanup() so it is able >> to map large memory configs into MTRRs. >> >> Currently, mtrr_cleanup() will fail with large memory configurations, >> because it limits chunk_size to 2GB, which means that each MTRR can only >> cover 2GB of memory. With a memory size of, say, 256GB, and ten variable >> MTRRs (such as some recent Intel CPUs have), it is not possible to set up >> the MTRRs to cover all of memory. > > Linux drivers no longer use MTRR so why is the cleanup needed, ie, what would > happen if the cleanup is just skipped in your case ? The infiniband & video drivers still use MTRR (or at least it was my understanding that they do). In any case, Stuart -- could you try booting with 'disable_mtrr_cleanup' as a kernel parameter? P.