From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758135AbbICXXs (ORCPT ); Thu, 3 Sep 2015 19:23:48 -0400 Received: from g9t5009.houston.hp.com ([15.240.92.67]:44389 "EHLO g9t5009.houston.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756836AbbICXXr (ORCPT ); Thu, 3 Sep 2015 19:23:47 -0400 Message-ID: <1441322474.3277.78.camel@hpe.com> Subject: Re: Fwd: [PATCH] x86: Use larger chunks in mtrr_cleanup From: Toshi Kani To: "Luis R. Rodriguez" Cc: Prarit Bhargava , Stuart Hayes , tglx@linutronix.de, mingo@redhat.com, "H. Peter Anvin" , linux-kernel@vger.kernel.org, x86@kernel.org, mcgrof@do-not-panic.com, Toshi Kani , Jan Beulich , Juergen Gross Date: Thu, 03 Sep 2015 17:21:14 -0600 In-Reply-To: <20150903224556.GY8051@wotan.suse.de> References: <20150903024542.GS8051@wotan.suse.de> <55E83A3E.3030000@redhat.com> <20150903175902.GU8051@wotan.suse.de> <55E88D06.3040608@redhat.com> <20150903184029.GV8051@wotan.suse.de> <1441308162.3277.20.camel@hpe.com> <20150903195134.GW8051@wotan.suse.de> <1441315902.3277.39.camel@hpe.com> <20150903220711.GX8051@wotan.suse.de> <1441319131.3277.54.camel@hpe.com> <20150903224556.GY8051@wotan.suse.de> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.16.5 (3.16.5-1.fc22) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 2015-09-04 at 00:45 +0200, Luis R. Rodriguez wrote: > On Thu, Sep 03, 2015 at 04:25:31PM -0600, Toshi Kani wrote: > > On Fri, 2015-09-04 at 00:07 +0200, Luis R. Rodriguez wrote: > > : > > > These are still at odds, for instance, I was under the impression we can > > > just have the OS return MTRR_TYPE_INVALID if the OS / drivers never used > > > or set up MTRR, but the platform did, above (not the patch) you seem to > > > be saying that even if the OS didn't modify MTRRs the OS still needs to > > > return the appropriately set up MTRR type by firmware. This is > > > different. Can you clarify? > > > > mtrr_type_lookup() returns valid MTRR cache type for a given address range > > when MTRRs are enabled. It does not matter if MTRRs are set by the > > firmware or the OS. When MTRRs are enabled, the kernel needs to check > > through mtrr_type_lookup() that large page mapping requests are aligned > > with MTRRs. > > One further change I was considering was seeing if we can separate PAT > set up from MTRR's setup, but that was under the assumption we could live > with a kernel that would have mtrr_type_lookup() return MTRR_TYPE_INVALID > if kernel MTRR code is completely disabled but PAT enabled. We can't enable > PAT today without MTRR beceause PAT is initialized from the MTRR init > sequence and that depends on MTRR, if we separated these though and and if a > distro disabled kernel MTRR an but enabled PAT and if MTRR did set up MTRR > what would the possible issues be? PAT's dependency to MTRR could be removed, but I would not recommend disabling the MTRR option since most of the firmwares enable MTRRs. When the kernel has the MTRR option disabled, but the firmware enables MTRRs, the kernel is unable to verify if a large page mapping is aligned with MTRRs. This can lead undefined behavior when such an unaligned map with MTRRs is created and accessed. > > On Xen, > > When Xen is used a platform firmware may still set up MTRR, even if the > hypervisor doesn't set up MTRR right ? So same issue and question here. Right, I meant to say Xen guests. In case of the Xen hypervisor, mtrr_type_lookup() returns a valid type as it runs on a platform. Thanks, -Toshi > > or on a platform with firmware that does not enable MTRRs, > > mtrr_type_lookup() returns MTRR_TYPE_INVALID (as long as the kernel does > > not enable them). > > Sure this makes sense. > > Thanks in advance, > > Luis