diff options
author | Colin Ian King <colin.king@canonical.com> | 2012-11-15 14:02:00 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-11-30 01:09:44 -0500 |
commit | 84764a415c707b43e751deb579a421776f190a95 (patch) | |
tree | d6afd249ae50ee2ff46cf4285c22d310ac100b0c /tools/power/x86/x86_energy_perf_policy | |
parent | 889facbee3e67dbc8eb29d8ee7fd66d33a647bfc (diff) | |
download | linux-84764a415c707b43e751deb579a421776f190a95.tar.bz2 |
tools/power x86_energy_perf_policy: close /proc/stat in for_every_cpu()
Instead of returning out of for_every_cpu() we should break out of the loop=
which will then tidy up correctly by closing the file /proc/stat.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools/power/x86/x86_energy_perf_policy')
-rw-r--r-- | tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c b/tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c index 33c5c7ee148f..40b3e5482f8a 100644 --- a/tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c +++ b/tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c @@ -289,7 +289,7 @@ void for_every_cpu(void (func)(int)) "cpu%u %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n", &cpu); if (retval != 1) - return; + break; func(cpu); } |