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

Commit a5968df8 authored by Ingo Molnar's avatar Ingo Molnar Committed by Linus Torvalds
Browse files

[PATCH] sched: allow larger granularity



Allow granularity up to 100 msecs, instead of 10 msecs.
(needed on larger boxes)

Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e127031f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4778,7 +4778,7 @@ cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
static inline void sched_init_granularity(void)
{
	unsigned int factor = 1 + ilog2(num_online_cpus());
	const unsigned long gran_limit = 10000000;
	const unsigned long gran_limit = 100000000;

	sysctl_sched_granularity *= factor;
	if (sysctl_sched_granularity > gran_limit)