diff options
author | Thomas Renninger <trenn@suse.de> | 2011-03-03 15:31:26 -0500 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2011-03-16 17:54:32 -0400 |
commit | e8951251b89440644a39f2512b4f265973926b41 (patch) | |
tree | f33ec13af306e2a8bdcbf6f62e34d450c1aa2bdc /drivers/cpufreq/cpufreq_ondemand.c | |
parent | ef598549b28014ec2ea7574d4e793728e0e33d02 (diff) |
[CPUFREQ] Remove old, deprecated per cpu ondemand/conservative sysfs files
Marked deprecated for quite a whilte now...
Signed-off-by: Thomas Renninger <trenn@suse.de>
Signed-off-by: Dave Jones <davej@redhat.com>
CC: cpufreq@vger.kernel.org
Diffstat (limited to 'drivers/cpufreq/cpufreq_ondemand.c')
-rw-r--r-- | drivers/cpufreq/cpufreq_ondemand.c | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c index 9dbb76397465..ba18205be12b 100644 --- a/drivers/cpufreq/cpufreq_ondemand.c +++ b/drivers/cpufreq/cpufreq_ondemand.c | |||
@@ -257,30 +257,6 @@ show_one(sampling_down_factor, sampling_down_factor); | |||
257 | show_one(ignore_nice_load, ignore_nice); | 257 | show_one(ignore_nice_load, ignore_nice); |
258 | show_one(powersave_bias, powersave_bias); | 258 | show_one(powersave_bias, powersave_bias); |
259 | 259 | ||
260 | /*** delete after deprecation time ***/ | ||
261 | |||
262 | #define DEPRECATION_MSG(file_name) \ | ||
263 | printk_once(KERN_INFO "CPUFREQ: Per core ondemand sysfs " \ | ||
264 | "interface is deprecated - " #file_name "\n"); | ||
265 | |||
266 | #define show_one_old(file_name) \ | ||
267 | static ssize_t show_##file_name##_old \ | ||
268 | (struct cpufreq_policy *unused, char *buf) \ | ||
269 | { \ | ||
270 | printk_once(KERN_INFO "CPUFREQ: Per core ondemand sysfs " \ | ||
271 | "interface is deprecated - " #file_name "\n"); \ | ||
272 | return show_##file_name(NULL, NULL, buf); \ | ||
273 | } | ||
274 | show_one_old(sampling_rate); | ||
275 | show_one_old(up_threshold); | ||
276 | show_one_old(ignore_nice_load); | ||
277 | show_one_old(powersave_bias); | ||
278 | show_one_old(sampling_rate_min); | ||
279 | |||
280 | cpufreq_freq_attr_ro_old(sampling_rate_min); | ||
281 | |||
282 | /*** delete after deprecation time ***/ | ||
283 | |||
284 | static ssize_t store_sampling_rate(struct kobject *a, struct attribute *b, | 260 | static ssize_t store_sampling_rate(struct kobject *a, struct attribute *b, |
285 | const char *buf, size_t count) | 261 | const char *buf, size_t count) |
286 | { | 262 | { |
@@ -437,42 +413,6 @@ static struct attribute_group dbs_attr_group = { | |||
437 | .name = "ondemand", | 413 | .name = "ondemand", |
438 | }; | 414 | }; |
439 | 415 | ||
440 | /*** delete after deprecation time ***/ | ||
441 | |||
442 | #define write_one_old(file_name) \ | ||
443 | static ssize_t store_##file_name##_old \ | ||
444 | (struct cpufreq_policy *unused, const char *buf, size_t count) \ | ||
445 | { \ | ||
446 | printk_once(KERN_INFO "CPUFREQ: Per core ondemand sysfs " \ | ||
447 | "interface is deprecated - " #file_name "\n"); \ | ||
448 | return store_##file_name(NULL, NULL, buf, count); \ | ||
449 | } | ||
450 | write_one_old(sampling_rate); | ||
451 | write_one_old(up_threshold); | ||
452 | write_one_old(ignore_nice_load); | ||
453 | write_one_old(powersave_bias); | ||
454 | |||
455 | cpufreq_freq_attr_rw_old(sampling_rate); | ||
456 | cpufreq_freq_attr_rw_old(up_threshold); | ||
457 | cpufreq_freq_attr_rw_old(ignore_nice_load); | ||
458 | cpufreq_freq_attr_rw_old(powersave_bias); | ||
459 | |||
460 | static struct attribute *dbs_attributes_old[] = { | ||
461 | &sampling_rate_min_old.attr, | ||
462 | &sampling_rate_old.attr, | ||
463 | &up_threshold_old.attr, | ||
464 | &ignore_nice_load_old.attr, | ||
465 | &powersave_bias_old.attr, | ||
466 | NULL | ||
467 | }; | ||
468 | |||
469 | static struct attribute_group dbs_attr_group_old = { | ||
470 | .attrs = dbs_attributes_old, | ||
471 | .name = "ondemand", | ||
472 | }; | ||
473 | |||
474 | /*** delete after deprecation time ***/ | ||
475 | |||
476 | /************************** sysfs end ************************/ | 416 | /************************** sysfs end ************************/ |
477 | 417 | ||
478 | static void dbs_freq_increase(struct cpufreq_policy *p, unsigned int freq) | 418 | static void dbs_freq_increase(struct cpufreq_policy *p, unsigned int freq) |
@@ -719,12 +659,6 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
719 | 659 | ||
720 | mutex_lock(&dbs_mutex); | 660 | mutex_lock(&dbs_mutex); |
721 | 661 | ||
722 | rc = sysfs_create_group(&policy->kobj, &dbs_attr_group_old); | ||
723 | if (rc) { | ||
724 | mutex_unlock(&dbs_mutex); | ||
725 | return rc; | ||
726 | } | ||
727 | |||
728 | dbs_enable++; | 662 | dbs_enable++; |
729 | for_each_cpu(j, policy->cpus) { | 663 | for_each_cpu(j, policy->cpus) { |
730 | struct cpu_dbs_info_s *j_dbs_info; | 664 | struct cpu_dbs_info_s *j_dbs_info; |
@@ -777,7 +711,6 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
777 | dbs_timer_exit(this_dbs_info); | 711 | dbs_timer_exit(this_dbs_info); |
778 | 712 | ||
779 | mutex_lock(&dbs_mutex); | 713 | mutex_lock(&dbs_mutex); |
780 | sysfs_remove_group(&policy->kobj, &dbs_attr_group_old); | ||
781 | mutex_destroy(&this_dbs_info->timer_mutex); | 714 | mutex_destroy(&this_dbs_info->timer_mutex); |
782 | dbs_enable--; | 715 | dbs_enable--; |
783 | mutex_unlock(&dbs_mutex); | 716 | mutex_unlock(&dbs_mutex); |