You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using ChkBugReport 0.5 215, some of the "Battery info | Kernel wakelocks" columns are always 0 e.g. Total time, Max time etc.
The bugreport contains kernel wake sources figures generated by the kernel power driver print_wakeup_source_stats() which are reported in millisecond units:
Using ChkBugReport 0.5 215, some of the "Battery info | Kernel wakelocks" columns are always 0 e.g. Total time, Max time etc.
The bugreport contains kernel wake sources figures generated by the kernel power driver
print_wakeup_source_stats()
which are reported in millisecond units:(Note the calls to
ktime_to_ms()
which mean active_time, total_time etc are in ms units in the bugreport.)However, in ChkBugReport's
KernelWakeSourcesPlugin.java
, the code ingenerate()
appears to be converting to ms again. e.g.which results in the 0 figures. (Not quite sure why dividing by a million there?)
The text was updated successfully, but these errors were encountered: