Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 39617f0f authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "sched: fix uninitialized variable usage"

parents b0089e4c f064a9de
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7137,7 +7137,7 @@ static inline int __select_idle_sibling(struct task_struct *p, int prev, int tar
	 * If the previous cpu is cache affine and idle, don't be stupid.
	 */
	if (prev != target && cpus_share_cache(prev, target) &&
				idle_cpu(prev) && !cpu_isolated(i))
				idle_cpu(prev) && !cpu_isolated(prev))
		return prev;

	sd = rcu_dereference(per_cpu(sd_llc, target));