Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
b0ceed06
Commit
b0ceed06
authored
Nov 23, 2015
by
Rafael J. Wysocki
Browse files
Options
Browse Files
Download
Plain Diff
Merge back earlier cpufreq fixes for v4.4.
parents
1ec21837
785ee278
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
drivers/cpufreq/cpufreq.c
drivers/cpufreq/cpufreq.c
+2
-5
drivers/cpufreq/intel_pstate.c
drivers/cpufreq/intel_pstate.c
+3
-1
No files found.
drivers/cpufreq/cpufreq.c
View file @
b0ceed06
...
@@ -1401,13 +1401,10 @@ static void cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
...
@@ -1401,13 +1401,10 @@ static void cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
}
}
cpumask_clear_cpu
(
cpu
,
policy
->
real_cpus
);
cpumask_clear_cpu
(
cpu
,
policy
->
real_cpus
);
remove_cpu_dev_symlink
(
policy
,
cpu
);
if
(
cpumask_empty
(
policy
->
real_cpus
))
{
if
(
cpumask_empty
(
policy
->
real_cpus
))
cpufreq_policy_free
(
policy
,
true
);
cpufreq_policy_free
(
policy
,
true
);
return
;
}
remove_cpu_dev_symlink
(
policy
,
cpu
);
}
}
static
void
handle_update
(
struct
work_struct
*
work
)
static
void
handle_update
(
struct
work_struct
*
work
)
...
...
drivers/cpufreq/intel_pstate.c
View file @
b0ceed06
...
@@ -1108,7 +1108,8 @@ static int intel_pstate_set_policy(struct cpufreq_policy *policy)
...
@@ -1108,7 +1108,8 @@ static int intel_pstate_set_policy(struct cpufreq_policy *policy)
limits
=
&
powersave_limits
;
limits
=
&
powersave_limits
;
limits
->
min_policy_pct
=
(
policy
->
min
*
100
)
/
policy
->
cpuinfo
.
max_freq
;
limits
->
min_policy_pct
=
(
policy
->
min
*
100
)
/
policy
->
cpuinfo
.
max_freq
;
limits
->
min_policy_pct
=
clamp_t
(
int
,
limits
->
min_policy_pct
,
0
,
100
);
limits
->
min_policy_pct
=
clamp_t
(
int
,
limits
->
min_policy_pct
,
0
,
100
);
limits
->
max_policy_pct
=
(
policy
->
max
*
100
)
/
policy
->
cpuinfo
.
max_freq
;
limits
->
max_policy_pct
=
DIV_ROUND_UP
(
policy
->
max
*
100
,
policy
->
cpuinfo
.
max_freq
);
limits
->
max_policy_pct
=
clamp_t
(
int
,
limits
->
max_policy_pct
,
0
,
100
);
limits
->
max_policy_pct
=
clamp_t
(
int
,
limits
->
max_policy_pct
,
0
,
100
);
/* Normalize user input to [min_policy_pct, max_policy_pct] */
/* Normalize user input to [min_policy_pct, max_policy_pct] */
...
@@ -1120,6 +1121,7 @@ static int intel_pstate_set_policy(struct cpufreq_policy *policy)
...
@@ -1120,6 +1121,7 @@ static int intel_pstate_set_policy(struct cpufreq_policy *policy)
limits
->
max_sysfs_pct
);
limits
->
max_sysfs_pct
);
limits
->
max_perf_pct
=
max
(
limits
->
min_policy_pct
,
limits
->
max_perf_pct
=
max
(
limits
->
min_policy_pct
,
limits
->
max_perf_pct
);
limits
->
max_perf_pct
);
limits
->
max_perf
=
round_up
(
limits
->
max_perf
,
8
);
/* Make sure min_perf_pct <= max_perf_pct */
/* Make sure min_perf_pct <= max_perf_pct */
limits
->
min_perf_pct
=
min
(
limits
->
max_perf_pct
,
limits
->
min_perf_pct
);
limits
->
min_perf_pct
=
min
(
limits
->
max_perf_pct
,
limits
->
min_perf_pct
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment