From: Namhyung Kim Date: Thu, 16 Aug 2012 04:21:05 +0000 (+0900) Subject: sched: Remove AFFINE_WAKEUPS feature flag X-Git-Tag: v3.7-rc1~193^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c751134ef8b070070d5f06348286b29d86424677;p=profile%2Fivi%2Fkernel-x86-ivi.git sched: Remove AFFINE_WAKEUPS feature flag Commit beac4c7e4a1c ("sched: Remove AFFINE_WAKEUPS feature") removed use of the flag but left the definition. Get rid of it. Signed-off-by: Namhyung Kim Signed-off-by: Peter Zijlstra Cc: Mike Galbraith Link: http://lkml.kernel.org/r/1345090865-20851-1-git-send-email-namhyung@kernel.org Signed-off-by: Ingo Molnar --- diff --git a/kernel/sched/features.h b/kernel/sched/features.h index de00a48..c38f52e 100644 --- a/kernel/sched/features.h +++ b/kernel/sched/features.h @@ -12,14 +12,6 @@ SCHED_FEAT(GENTLE_FAIR_SLEEPERS, true) SCHED_FEAT(START_DEBIT, true) /* - * Based on load and program behaviour, see if it makes sense to place - * a newly woken task on the same cpu as the task that woke it -- - * improve cache locality. Typically used with SYNC wakeups as - * generated by pipes and the like, see also SYNC_WAKEUPS. - */ -SCHED_FEAT(AFFINE_WAKEUPS, true) - -/* * Prefer to schedule the task we woke last (assuming it failed * wakeup-preemption), since its likely going to consume data we * touched, increases cache locality.