Skip to content

Commit 1d9f3e2

Browse files
aeglKAGA-KOKO
authored andcommitted
x86/intel_rdt: Enable CMT and MBM on new Skylake stepping
New stepping of Skylake has fixes for cache occupancy and memory bandwidth monitoring. Update the code to enable these by default on newer steppings. Signed-off-by: Tony Luck <tony.luck@intel.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Fenghua Yu <fenghua.yu@intel.com> Cc: stable@vger.kernel.org # v4.14 Cc: Vikas Shivappa <vikas.shivappa@linux.intel.com> Link: https://lkml.kernel.org/r/20180608160732.9842-1-tony.luck@intel.com
1 parent a07771a commit 1d9f3e2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

arch/x86/kernel/cpu/intel_rdt.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -821,6 +821,8 @@ static __init void rdt_quirks(void)
821821
case INTEL_FAM6_SKYLAKE_X:
822822
if (boot_cpu_data.x86_stepping <= 4)
823823
set_rdt_options("!cmt,!mbmtotal,!mbmlocal,!l3cat");
824+
else
825+
set_rdt_options("!l3cat");
824826
}
825827
}
826828

0 commit comments

Comments
 (0)