Skip to content

Commit

Permalink
toplev: Fix on hybrid systems
Browse files Browse the repository at this point in the history
  • Loading branch information
Andi Kleen committed Nov 22, 2023
1 parent 5ca91cf commit 7103a79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toplev.py
Original file line number Diff line number Diff line change
Expand Up @@ -3860,7 +3860,7 @@ def init_runner_list(kernel_version):
cpu_list = get_cpu_list(j)
if len(cpu_list) == 0:
continue
r = Runner(args.level, idle_threshold, os.path.basename(j), kernel_version)
r = Runner(args.level, idle_threshold, kernel_version, pmu=os.path.basename(j))
runner_list.append(r)
r.cpu_list = cpu_list
# hybrid, but faking non hybrid cpu
Expand Down

0 comments on commit 7103a79

Please sign in to comment.