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
909a694e
Commit
909a694e
authored
Jul 08, 2009
by
Dave Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CPUFREQ] Factor out interface creation from cpufreq_add_dev
Signed-off-by:
Dave Jones
<
davej@redhat.com
>
parent
19d6f7ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
37 deletions
+52
-37
drivers/cpufreq/cpufreq.c
drivers/cpufreq/cpufreq.c
+52
-37
No files found.
drivers/cpufreq/cpufreq.c
View file @
909a694e
...
@@ -784,6 +784,57 @@ int cpufreq_add_dev_symlink(unsigned int cpu, struct cpufreq_policy *policy)
...
@@ -784,6 +784,57 @@ int cpufreq_add_dev_symlink(unsigned int cpu, struct cpufreq_policy *policy)
return
ret
;
return
ret
;
}
}
int
cpufreq_add_dev_interface
(
unsigned
int
cpu
,
struct
cpufreq_policy
*
policy
,
struct
sys_device
*
sys_dev
)
{
struct
freq_attr
**
drv_attr
;
unsigned
long
flags
;
int
ret
=
0
;
unsigned
int
j
;
/* prepare interface data */
ret
=
kobject_init_and_add
(
&
policy
->
kobj
,
&
ktype_cpufreq
,
&
sys_dev
->
kobj
,
"cpufreq"
);
if
(
ret
)
return
ret
;
/* set up files for this cpu device */
drv_attr
=
cpufreq_driver
->
attr
;
while
((
drv_attr
)
&&
(
*
drv_attr
))
{
ret
=
sysfs_create_file
(
&
policy
->
kobj
,
&
((
*
drv_attr
)
->
attr
));
if
(
ret
)
goto
err_out_kobj_put
;
drv_attr
++
;
}
if
(
cpufreq_driver
->
get
)
{
ret
=
sysfs_create_file
(
&
policy
->
kobj
,
&
cpuinfo_cur_freq
.
attr
);
if
(
ret
)
goto
err_out_kobj_put
;
}
if
(
cpufreq_driver
->
target
)
{
ret
=
sysfs_create_file
(
&
policy
->
kobj
,
&
scaling_cur_freq
.
attr
);
if
(
ret
)
goto
err_out_kobj_put
;
}
spin_lock_irqsave
(
&
cpufreq_driver_lock
,
flags
);
for_each_cpu
(
j
,
policy
->
cpus
)
{
if
(
!
cpu_online
(
j
))
continue
;
per_cpu
(
cpufreq_cpu_data
,
j
)
=
policy
;
per_cpu
(
policy_cpu
,
j
)
=
policy
->
cpu
;
}
spin_unlock_irqrestore
(
&
cpufreq_driver_lock
,
flags
);
ret
=
cpufreq_add_dev_symlink
(
cpu
,
policy
);
return
ret
;
err_out_kobj_put:
kobject_put
(
&
policy
->
kobj
);
wait_for_completion
(
&
policy
->
kobj_unregister
);
return
ret
;
}
/**
/**
* cpufreq_add_dev - add a CPU device
* cpufreq_add_dev - add a CPU device
...
@@ -800,7 +851,6 @@ static int cpufreq_add_dev(struct sys_device *sys_dev)
...
@@ -800,7 +851,6 @@ static int cpufreq_add_dev(struct sys_device *sys_dev)
int
ret
=
0
;
int
ret
=
0
;
struct
cpufreq_policy
new_policy
;
struct
cpufreq_policy
new_policy
;
struct
cpufreq_policy
*
policy
;
struct
cpufreq_policy
*
policy
;
struct
freq_attr
**
drv_attr
;
unsigned
long
flags
;
unsigned
long
flags
;
unsigned
int
j
;
unsigned
int
j
;
...
@@ -923,41 +973,7 @@ static int cpufreq_add_dev(struct sys_device *sys_dev)
...
@@ -923,41 +973,7 @@ static int cpufreq_add_dev(struct sys_device *sys_dev)
#endif
#endif
memcpy
(
&
new_policy
,
policy
,
sizeof
(
struct
cpufreq_policy
));
memcpy
(
&
new_policy
,
policy
,
sizeof
(
struct
cpufreq_policy
));
/* prepare interface data */
ret
=
cpufreq_add_dev_interface
(
cpu
,
policy
,
sys_dev
);
ret
=
kobject_init_and_add
(
&
policy
->
kobj
,
&
ktype_cpufreq
,
&
sys_dev
->
kobj
,
"cpufreq"
);
if
(
ret
)
goto
out_driver_exit
;
/* set up files for this cpu device */
drv_attr
=
cpufreq_driver
->
attr
;
while
((
drv_attr
)
&&
(
*
drv_attr
))
{
ret
=
sysfs_create_file
(
&
policy
->
kobj
,
&
((
*
drv_attr
)
->
attr
));
if
(
ret
)
goto
err_out_kobj_put
;
drv_attr
++
;
}
if
(
cpufreq_driver
->
get
)
{
ret
=
sysfs_create_file
(
&
policy
->
kobj
,
&
cpuinfo_cur_freq
.
attr
);
if
(
ret
)
goto
err_out_kobj_put
;
}
if
(
cpufreq_driver
->
target
)
{
ret
=
sysfs_create_file
(
&
policy
->
kobj
,
&
scaling_cur_freq
.
attr
);
if
(
ret
)
goto
err_out_kobj_put
;
}
spin_lock_irqsave
(
&
cpufreq_driver_lock
,
flags
);
for_each_cpu
(
j
,
policy
->
cpus
)
{
if
(
!
cpu_online
(
j
))
continue
;
per_cpu
(
cpufreq_cpu_data
,
j
)
=
policy
;
per_cpu
(
policy_cpu
,
j
)
=
policy
->
cpu
;
}
spin_unlock_irqrestore
(
&
cpufreq_driver_lock
,
flags
);
ret
=
cpufreq_add_dev_symlink
(
cpu
,
policy
->
cpus
,
policy
);
if
(
ret
)
if
(
ret
)
goto
err_out_unregister
;
goto
err_out_unregister
;
...
@@ -990,7 +1006,6 @@ static int cpufreq_add_dev(struct sys_device *sys_dev)
...
@@ -990,7 +1006,6 @@ static int cpufreq_add_dev(struct sys_device *sys_dev)
per_cpu
(
cpufreq_cpu_data
,
j
)
=
NULL
;
per_cpu
(
cpufreq_cpu_data
,
j
)
=
NULL
;
spin_unlock_irqrestore
(
&
cpufreq_driver_lock
,
flags
);
spin_unlock_irqrestore
(
&
cpufreq_driver_lock
,
flags
);
err_out_kobj_put:
kobject_put
(
&
policy
->
kobj
);
kobject_put
(
&
policy
->
kobj
);
wait_for_completion
(
&
policy
->
kobj_unregister
);
wait_for_completion
(
&
policy
->
kobj_unregister
);
...
...
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