mirror of
https://github.com/sched-ext/scx.git
synced 2024-11-28 05:30:24 +00:00
scx_lavd: fix a variable name to kill a warning
Signed-off-by: Changwoo Min <changwoo@igalia.com>
This commit is contained in:
parent
e1b880f7c3
commit
882212574a
@ -298,7 +298,7 @@ impl FlatTopology {
|
||||
// Build a vector of cpu flat ids.
|
||||
let mut base_freq = 0;
|
||||
let mut avg_freq = 0;
|
||||
for (node_pos, node) in topo.nodes().iter().enumerate() {
|
||||
for (_node_pos, node) in topo.nodes().iter().enumerate() {
|
||||
for (llc_pos, (_llc_id, llc)) in node.llcs().iter().enumerate() {
|
||||
for (core_pos, (_core_id, core)) in llc.cores().iter().enumerate() {
|
||||
for (cpu_pos, (cpu_id, cpu)) in core.cpus().iter().enumerate() {
|
||||
|
Loading…
Reference in New Issue
Block a user