Skip to content

Commit 6acae3c

Browse files
fdefrancrafaeljw
authored andcommitted
cpufreq: intel_pstate: Allow repeated intel_pstate disable
Repeated intel_pstate disables currently return an error, adding unnecessary complexity to userspace scripts which must first read the current state and conditionally write 'off'. Make repeated intel_pstate disables a no-op. Signed-off-by: Fabio M. De Francesco <fabio.m.de.francesco@linux.intel.com> Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Link: https://patch.msgid.link/20260219181600.16388-1-fabio.m.de.francesco@linux.intel.com Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent 54de61a commit 6acae3c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/cpufreq/intel_pstate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3472,7 +3472,7 @@ static int intel_pstate_update_status(const char *buf, size_t size)
34723472
{
34733473
if (size == 3 && !strncmp(buf, "off", size)) {
34743474
if (!intel_pstate_driver)
3475-
return -EINVAL;
3475+
return 0;
34763476

34773477
if (hwp_active)
34783478
return -EBUSY;

0 commit comments

Comments
 (0)