dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Colin Ian King 2012-11-15 14:02:00 -05:00 committed by Len Brown
parent 889facbee3
commit 84764a415c
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}