Skip to content

Commit 9b3aca6

Browse files
Toshi KaniIngo Molnar
authored andcommitted
x86/mm/mtrr: Fix MTRR state checks in mtrr_type_lookup()
'mtrr_state.enabled' contains the FE (fixed MTRRs enabled) and E (MTRRs enabled) flags in MSR_MTRRdefType. Intel SDM, section 11.11.2.1, defines these flags as follows: - All MTRRs are disabled when the E flag is clear. The FE flag has no affect when the E flag is clear. - The default type is enabled when the E flag is set. - MTRR variable ranges are enabled when the E flag is set. - MTRR fixed ranges are enabled when both E and FE flags are set. MTRR state checks in __mtrr_type_lookup() do not match with SDM. Hence, this patch makes the following changes: - The current code detects MTRRs disabled when both E and FE flags are clear in mtrr_state.enabled. Fix to detect MTRRs disabled when the E flag is clear. - The current code does not check if the FE bit is set in mtrr_state.enabled when looking at the fixed entries. Fix to check the FE flag. - The current code returns the default type when the E flag is clear in mtrr_state.enabled. However, the default type is UC when the E flag is clear. Remove the code as this case is handled as MTRR disabled with the 1st change. In addition, this patch defines the E and FE flags in mtrr_state.enabled as follows. - FE flag: MTRR_STATE_MTRR_FIXED_ENABLED - E flag: MTRR_STATE_MTRR_ENABLED print_mtrr_state() and x86_get_mtrr_mem_range() are also updated accordingly. Signed-off-by: Toshi Kani <toshi.kani@hp.com> Signed-off-by: Borislav Petkov <bp@suse.de> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Andy Lutomirski <luto@amacapital.net> Cc: Borislav Petkov <bp@alien8.de> Cc: Brian Gerst <brgerst@gmail.com> Cc: Denys Vlasenko <dvlasenk@redhat.com> Cc: Elliott@hp.com Cc: H. Peter Anvin <hpa@zytor.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Luis R. Rodriguez <mcgrof@suse.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: dave.hansen@intel.com Cc: linux-mm <linux-mm@kvack.org> Cc: pebolle@tiscali.nl Link: http://lkml.kernel.org/r/1431714237-880-4-git-send-email-toshi.kani@hp.com Link: http://lkml.kernel.org/r/1432628901-18044-4-git-send-email-bp@alien8.de Signed-off-by: Ingo Molnar <mingo@kernel.org>
1 parent 7f0431e commit 9b3aca6

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

arch/x86/include/asm/mtrr.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,8 @@ struct mtrr_gentry32 {
127127
_IOW(MTRR_IOCTL_BASE, 9, struct mtrr_sentry32)
128128
#endif /* CONFIG_COMPAT */
129129

130+
/* Bit fields for enabled in struct mtrr_state_type */
131+
#define MTRR_STATE_MTRR_FIXED_ENABLED 0x01
132+
#define MTRR_STATE_MTRR_ENABLED 0x02
133+
130134
#endif /* _ASM_X86_MTRR_H */

arch/x86/kernel/cpu/mtrr/cleanup.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ x86_get_mtrr_mem_range(struct range *range, int nr_range,
9898
continue;
9999
base = range_state[i].base_pfn;
100100
if (base < (1<<(20-PAGE_SHIFT)) && mtrr_state.have_fixed &&
101-
(mtrr_state.enabled & 1)) {
101+
(mtrr_state.enabled & MTRR_STATE_MTRR_ENABLED) &&
102+
(mtrr_state.enabled & MTRR_STATE_MTRR_FIXED_ENABLED)) {
102103
/* Var MTRR contains UC entry below 1M? Skip it: */
103104
printk(BIOS_BUG_MSG, i);
104105
if (base + size <= (1<<(20-PAGE_SHIFT)))

arch/x86/kernel/cpu/mtrr/generic.c

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,16 @@ static u8 __mtrr_type_lookup(u64 start, u64 end, u64 *partial_end, int *repeat)
119119
if (!mtrr_state_set)
120120
return 0xFF;
121121

122-
if (!mtrr_state.enabled)
122+
if (!(mtrr_state.enabled & MTRR_STATE_MTRR_ENABLED))
123123
return 0xFF;
124124

125125
/* Make end inclusive end, instead of exclusive */
126126
end--;
127127

128128
/* Look in fixed ranges. Just return the type as per start */
129-
if (mtrr_state.have_fixed && (start < 0x100000)) {
129+
if ((start < 0x100000) &&
130+
(mtrr_state.have_fixed) &&
131+
(mtrr_state.enabled & MTRR_STATE_MTRR_FIXED_ENABLED)) {
130132
int idx;
131133

132134
if (start < 0x80000) {
@@ -149,9 +151,6 @@ static u8 __mtrr_type_lookup(u64 start, u64 end, u64 *partial_end, int *repeat)
149151
* Look of multiple ranges matching this address and pick type
150152
* as per MTRR precedence
151153
*/
152-
if (!(mtrr_state.enabled & 2))
153-
return mtrr_state.def_type;
154-
155154
prev_match = 0xFF;
156155
for (i = 0; i < num_var_ranges; ++i) {
157156
unsigned short start_state, end_state, inclusive;
@@ -355,7 +354,9 @@ static void __init print_mtrr_state(void)
355354
mtrr_attrib_to_str(mtrr_state.def_type));
356355
if (mtrr_state.have_fixed) {
357356
pr_debug("MTRR fixed ranges %sabled:\n",
358-
mtrr_state.enabled & 1 ? "en" : "dis");
357+
((mtrr_state.enabled & MTRR_STATE_MTRR_ENABLED) &&
358+
(mtrr_state.enabled & MTRR_STATE_MTRR_FIXED_ENABLED)) ?
359+
"en" : "dis");
359360
print_fixed(0x00000, 0x10000, mtrr_state.fixed_ranges + 0);
360361
for (i = 0; i < 2; ++i)
361362
print_fixed(0x80000 + i * 0x20000, 0x04000,
@@ -368,7 +369,7 @@ static void __init print_mtrr_state(void)
368369
print_fixed_last();
369370
}
370371
pr_debug("MTRR variable ranges %sabled:\n",
371-
mtrr_state.enabled & 2 ? "en" : "dis");
372+
mtrr_state.enabled & MTRR_STATE_MTRR_ENABLED ? "en" : "dis");
372373
high_width = (__ffs64(size_or_mask) - (32 - PAGE_SHIFT) + 3) / 4;
373374

374375
for (i = 0; i < num_var_ranges; ++i) {

0 commit comments

Comments
 (0)