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

Commit c1a89740 authored by Ingo Molnar's avatar Ingo Molnar
Browse files

sched: clean up overlong line in kernel/sched_debug.c



clean up overlong line in kernel/sched_debug.c.

Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent deaf2227
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -327,10 +327,12 @@ void proc_sched_show_task(struct task_struct *p, struct seq_file *m)
			avg_atom = -1LL;

		avg_per_cpu = p->se.sum_exec_runtime;
		if (p->se.nr_migrations)
			avg_per_cpu = div64_64(avg_per_cpu, p->se.nr_migrations);
		else
		if (p->se.nr_migrations) {
			avg_per_cpu = div64_64(avg_per_cpu,
					       p->se.nr_migrations);
		} else {
			avg_per_cpu = -1LL;
		}

		__PN(avg_atom);
		__PN(avg_per_cpu);