aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
authorFrederic Weisbecker <fweisbec@gmail.com>2009-07-16 09:44:29 -0400
committerIngo Molnar <mingo@elte.hu>2009-07-18 09:51:43 -0400
commit6f80bd985fe242c2e6a8b6209ed20b0495d3d63b (patch)
treecd21eeb013fe87a59c3406126e8357e30a22635a /include/linux/sched.h
parente4aafea2d4bde8b44d6500c4ee7195bbfc51269e (diff)
sched: Remove the CONFIG_PREEMPT_BKL case definition of cond_resched()
CONFIG_PREEMPT_BKL doesn't exist anymore. So remove this config-on case definition of cond_resched(). Reported-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Reported-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> LKML-Reference: <1247725694-6082-5-git-send-email-fweisbec@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r--include/linux/sched.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 9bada20e2b23..e2bdf18e05c4 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -2285,17 +2285,12 @@ static inline int need_resched(void)
2285 * cond_resched_softirq() will enable bhs before scheduling. 2285 * cond_resched_softirq() will enable bhs before scheduling.
2286 */ 2286 */
2287extern int _cond_resched(void); 2287extern int _cond_resched(void);
2288#ifdef CONFIG_PREEMPT_BKL 2288
2289static inline int cond_resched(void)
2290{
2291 return 0;
2292}
2293#else
2294static inline int cond_resched(void) 2289static inline int cond_resched(void)
2295{ 2290{
2296 return _cond_resched(); 2291 return _cond_resched();
2297} 2292}
2298#endif 2293
2299extern int cond_resched_lock(spinlock_t * lock); 2294extern int cond_resched_lock(spinlock_t * lock);
2300extern int cond_resched_softirq(void); 2295extern int cond_resched_softirq(void);
2301static inline int cond_resched_bkl(void) 2296static inline int cond_resched_bkl(void)