]> git.baikalelectronics.ru Git - kernel.git/commit
cpufreq: intel_pstate: Fix unchecked MSR 0x773 access
authorSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Thu, 4 Nov 2021 05:19:25 +0000 (22:19 -0700)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 4 Nov 2021 18:48:47 +0000 (19:48 +0100)
commit33f95f2c059edb56c3525ed49118a16de4dcaf82
treee412263fb918a5f8671bf50f4be3ef2aecc6bb64
parent861fd4f795334a7ca8167d81a1544e6aae34d7ac
cpufreq: intel_pstate: Fix unchecked MSR 0x773 access

It is possible that on some platforms HWP interrupts are disabled. In
that case accessing MSR 0x773 will result in warning.

So check X86_FEATURE_HWP_NOTIFY feature to access MSR 0x773. The other
places in code where this MSR is accessed, already checks this feature
except during disable path called during cpufreq offline and suspend
callbacks.

Fixes: d339acf646f1 ("cpufreq: intel_pstate: Process HWP Guaranteed change notification")
Reported-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Tested-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/cpufreq/intel_pstate.c