summaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
authorHiroshi Shimamoto2012-02-16 06:52:21 +0100
committerIngo Molnar2012-02-22 12:28:29 +0100
commitde5bdff7a72acc281219be2b8edeeca1fd81c542 (patch)
tree6a528beb1852e2fd7d444b47e8b4cc6e6be31108 /include/linux/sched.h
parentsched: Remove rcu_read_lock/unlock() from select_idle_sibling() (diff)
downloadkernel-qcow2-linux-de5bdff7a72acc281219be2b8edeeca1fd81c542.tar.gz
kernel-qcow2-linux-de5bdff7a72acc281219be2b8edeeca1fd81c542.tar.xz
kernel-qcow2-linux-de5bdff7a72acc281219be2b8edeeca1fd81c542.zip
sched: Make initial SCHED_RR timeslace DEF_TIMESLICE
Current the initial SCHED_RR timeslice of init_task is HZ, which means 1s, and is not same as the default SCHED_RR timeslice DEF_TIMESLICE. Change that initial timeslice to the DEF_TIMESLICE. Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> [ s/DEF_TIMESLICE/RR_TIMESLICE/g ] Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/4F3C9995.3010800@ct.jp.nec.com Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r--include/linux/sched.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 5dba2ad52431..eb5de466f099 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -1234,6 +1234,12 @@ struct sched_rt_entity {
#endif
};
+/*
+ * default timeslice is 100 msecs (used only for SCHED_RR tasks).
+ * Timeslices get refilled after they expire.
+ */
+#define RR_TIMESLICE (100 * HZ / 1000)
+
struct rcu_node;
enum perf_event_task_context {