From: Ingo Molnar Date: Tue, 6 May 2025 17:42:00 +0000 (+0200) Subject: Merge tag 'v6.15-rc5' into x86/msr, to pick up fixes and to resolve conflicts X-Git-Tag: v6.16-rc1~195^2~25^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=570d58b12fbf7bae0ba72d929ccf914a4df5ca7c;p=thirdparty%2Flinux.git Merge tag 'v6.15-rc5' into x86/msr, to pick up fixes and to resolve conflicts Conflicts: drivers/cpufreq/intel_pstate.c Signed-off-by: Ingo Molnar --- 570d58b12fbf7bae0ba72d929ccf914a4df5ca7c diff --cc drivers/cpufreq/intel_pstate.c index 2fc619ba6309c,ba9bf06f1c773..db8c99535e618 --- a/drivers/cpufreq/intel_pstate.c +++ b/drivers/cpufreq/intel_pstate.c @@@ -598,7 -598,10 +598,10 @@@ static bool turbo_is_disabled(void { u64 misc_en; + if (!cpu_feature_enabled(X86_FEATURE_IDA)) + return true; + - rdmsrl(MSR_IA32_MISC_ENABLE, misc_en); + rdmsrq(MSR_IA32_MISC_ENABLE, misc_en); return !!(misc_en & MSR_IA32_MISC_ENABLE_TURBO_DISABLE); }