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

Commit deac4ee6 authored by Sven-Thorsten Dietrich's avatar Sven-Thorsten Dietrich Committed by Ingo Molnar
Browse files

sched: simplify can_migrate_task()



Remove trivial conditional branch in Linux scheduler's
can_migrate_task() function.

   text    data     bss     dec     hex filename
   34770    2998      24   37792    93a0 sched.o.before
   34757    2998      24   37779    9393 sched.o.after

Signed-off-by: default avatarSven-Thorsten Dietrich <sven@thebigcorporation.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 71fd3714
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -2180,12 +2180,6 @@ int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
	if (task_running(rq, p))
		return 0;

	/*
	 * Aggressive migration if too many balance attempts have failed:
	 */
	if (sd->nr_balance_failed > sd->cache_nice_tries)
		return 1;

	return 1;
}