Commit 1e438610 authored by Kirill Smelkov's avatar Kirill Smelkov

fixup! X neotest: Also show target-latency for C-states

parent ca0d828b
......@@ -605,7 +605,7 @@ system_info() {
while read state; do
is+=" "
lat=`cat $state/latency`
res=`cat $state/residency`
res=`cat $state/residency 2>/dev/null` || res="?" # added in linux 3.15
test "`cat $state/disable`" = "1" && is+="!" || latmax=$(($lat>$latmax?$lat:$latmax))
is+="`cat $state/name`·${lat}/${res}"
done \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment