Merge "sched/walt: Fix cluster index swap"

This commit is contained in:
qctecmdr 2023-08-29 08:37:02 -07:00 committed by Gerrit - the friendly Code Review server
commit ad947e0d93

View File

@ -2600,8 +2600,8 @@ static inline void assign_cluster_ids(struct list_head *head)
cluster = sched_cluster[2];
sched_cluster[2] = sched_cluster[1];
sched_cluster[1] = cluster;
sched_cluster[1]->id = 2;
sched_cluster[2]->id = 1;
sched_cluster[1]->id = 1;
sched_cluster[2]->id = 2;
}
}