projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b85d066
)
sched: feat affine wakeups
author
Ingo Molnar
<mingo@elte.hu>
Wed, 19 Mar 2008 00:39:19 +0000
(
01:39
+0100)
committer
Ingo Molnar
<mingo@elte.hu>
Sat, 19 Apr 2008 17:44:57 +0000
(19:44 +0200)
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/sched.c
patch
|
blob
|
blame
|
history
diff --git
a/kernel/sched.c
b/kernel/sched.c
index 263e25e10204fe2b727db99e67fb8cf3d07d45ca..7c5efad78c09aa0700b33e23929dbf40f0085040 100644
(file)
--- a/
kernel/sched.c
+++ b/
kernel/sched.c
@@
-628,6
+628,7
@@
enum {
SCHED_FEAT_HRTICK = 8,
SCHED_FEAT_DOUBLE_TICK = 16,
SCHED_FEAT_SYNC_WAKEUPS = 32,
+ SCHED_FEAT_AFFINE_WAKEUPS = 64,
};
const_debug unsigned int sysctl_sched_features =
@@
-636,7
+637,8
@@
const_debug unsigned int sysctl_sched_features =
SCHED_FEAT_START_DEBIT * 1 |
SCHED_FEAT_HRTICK * 1 |
SCHED_FEAT_DOUBLE_TICK * 0 |
- SCHED_FEAT_SYNC_WAKEUPS * 0;
+ SCHED_FEAT_SYNC_WAKEUPS * 0 |
+ SCHED_FEAT_AFFINE_WAKEUPS * 1;
#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)