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
fdc75701
Commit
fdc75701
authored
Jul 25, 2019
by
Rafael J. Wysocki
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'pm-cpufreq'
* pm-cpufreq: cpufreq/pasemi: fix use-after-free in pas_cpufreq_cpu_init()
parents
c528adef
e0a12445
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
14 deletions
+9
-14
drivers/cpufreq/pasemi-cpufreq.c
drivers/cpufreq/pasemi-cpufreq.c
+9
-14
No files found.
drivers/cpufreq/pasemi-cpufreq.c
View file @
fdc75701
...
@@ -131,10 +131,18 @@ static int pas_cpufreq_cpu_init(struct cpufreq_policy *policy)
...
@@ -131,10 +131,18 @@ static int pas_cpufreq_cpu_init(struct cpufreq_policy *policy)
int
err
=
-
ENODEV
;
int
err
=
-
ENODEV
;
cpu
=
of_get_cpu_node
(
policy
->
cpu
,
NULL
);
cpu
=
of_get_cpu_node
(
policy
->
cpu
,
NULL
);
if
(
!
cpu
)
goto
out
;
max_freqp
=
of_get_property
(
cpu
,
"clock-frequency"
,
NULL
);
of_node_put
(
cpu
);
of_node_put
(
cpu
);
if
(
!
cpu
)
if
(
!
max_freqp
)
{
err
=
-
EINVAL
;
goto
out
;
goto
out
;
}
/* we need the freq in kHz */
max_freq
=
*
max_freqp
/
1000
;
dn
=
of_find_compatible_node
(
NULL
,
NULL
,
"1682m-sdc"
);
dn
=
of_find_compatible_node
(
NULL
,
NULL
,
"1682m-sdc"
);
if
(
!
dn
)
if
(
!
dn
)
...
@@ -171,16 +179,6 @@ static int pas_cpufreq_cpu_init(struct cpufreq_policy *policy)
...
@@ -171,16 +179,6 @@ static int pas_cpufreq_cpu_init(struct cpufreq_policy *policy)
}
}
pr_debug
(
"init cpufreq on CPU %d
\n
"
,
policy
->
cpu
);
pr_debug
(
"init cpufreq on CPU %d
\n
"
,
policy
->
cpu
);
max_freqp
=
of_get_property
(
cpu
,
"clock-frequency"
,
NULL
);
if
(
!
max_freqp
)
{
err
=
-
EINVAL
;
goto
out_unmap_sdcpwr
;
}
/* we need the freq in kHz */
max_freq
=
*
max_freqp
/
1000
;
pr_debug
(
"max clock-frequency is at %u kHz
\n
"
,
max_freq
);
pr_debug
(
"max clock-frequency is at %u kHz
\n
"
,
max_freq
);
pr_debug
(
"initializing frequency table
\n
"
);
pr_debug
(
"initializing frequency table
\n
"
);
...
@@ -199,9 +197,6 @@ static int pas_cpufreq_cpu_init(struct cpufreq_policy *policy)
...
@@ -199,9 +197,6 @@ static int pas_cpufreq_cpu_init(struct cpufreq_policy *policy)
cpufreq_generic_init
(
policy
,
pas_freqs
,
get_gizmo_latency
());
cpufreq_generic_init
(
policy
,
pas_freqs
,
get_gizmo_latency
());
return
0
;
return
0
;
out_unmap_sdcpwr:
iounmap
(
sdcpwr_mapbase
);
out_unmap_sdcasr:
out_unmap_sdcasr:
iounmap
(
sdcasr_mapbase
);
iounmap
(
sdcasr_mapbase
);
out:
out:
...
...
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