sched: dynamically adapt granularity with nr_running
From: | Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
To: | LKML <linux-kernel@vger.kernel.org>, Peter Zijlstra <peterz@infradead.org> | |
Subject: | [RFC patch 0/2] sched: dynamically adapt granularity with nr_running | |
Date: | Sat, 11 Sep 2010 13:37:32 -0400 | |
Message-ID: | <20100911173732.551632040@efficios.com> | |
Cc: | Linus Torvalds <torvalds@linux-foundation.org>, Andrew Morton <akpm@linux-foundation.org>, Ingo Molnar <mingo@elte.hu>, Steven Rostedt <rostedt@goodmis.org>, Thomas Gleixner <tglx@linutronix.de>, Mathieu Desnoyers <mathieu.desnoyers@efficios.com>, Tony Lindgren <tony@atomide.com>, Mike Galbraith <efault@gmx.de> | |
Archive‑link: | Article |
Changing the minimum granularity is a double-edged sword: if we set it to a too small value, then the scheduler will preempt tasks too often. If it is too large, then the "latency" period can grow very large as the number of running tasks increases. The first patch leaves the same scheduling granularity when there are few tasks on the system (3 or less), but dynamically adapts (shrinks) the sched granularity when there are more. At a ceiling value of 8 running tasks (this choice is arbitrary), it grows the latency rather than shrinking granularity further to ensure we don't end up calling the scheduler too often. The second patch ensures that awakened sleeping tasks don't get affected by shrinked minimum granularity. Comments are welcome, Thanks, Mathieu -- Mathieu Desnoyers Operating System Efficiency R&D Consultant EfficiOS Inc. http://www.efficios.com -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/