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

Commit c671cda8 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "sched: Fix for 32bit '__udivdi3' build error"

parents 782acde1 12a64233
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -206,7 +206,7 @@ unsigned int sched_get_cpu_util(int cpu)
	raw_spin_unlock_irqrestore(&rq->lock, flags);

	util = (util >= capacity) ? capacity : util;
	busy = (util * 100) / capacity;
	busy = div64_ul((util * 100), capacity);
	return busy;
}