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:
parent
889facbee3
commit
84764a415c
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user