aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2008-01-25 15:08:28 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-25 15:08:28 -0500
commit02b67cc3ba36bdba351d6c3a00593f4ec550d9d3 (patch)
tree5185ad2d780974dc864f12d81d6c8b9fec73097b /include/linux/sched.h
parent03319ec8b06849051747a17aa2a0f9aba9277980 (diff)
sched: do not do cond_resched() when CONFIG_PREEMPT
Why do we even have cond_resched when real preemption is on? It seems to be a waste of space and time. remove cond_resched with CONFIG_PREEMPT on. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r--include/linux/sched.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index fe3f8fbc614e..7907845c2348 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -1885,7 +1885,18 @@ static inline int need_resched(void)
1885 * cond_resched_lock() will drop the spinlock before scheduling, 1885 * cond_resched_lock() will drop the spinlock before scheduling,
1886 * cond_resched_softirq() will enable bhs before scheduling. 1886 * cond_resched_softirq() will enable bhs before scheduling.
1887 */ 1887 */
1888extern int cond_resched(void); 1888#ifdef CONFIG_PREEMPT
1889static inline int cond_resched(void)
1890{
1891 return 0;
1892}
1893#else
1894extern int _cond_resched(void);
1895static inline int cond_resched(void)
1896{
1897 return _cond_resched();
1898}
1899#endif
1889extern int cond_resched_lock(spinlock_t * lock); 1900extern int cond_resched_lock(spinlock_t * lock);
1890extern int cond_resched_softirq(void); 1901extern int cond_resched_softirq(void);
1891 1902