]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - include/linux/sched.h
sched: do not do cond_resched() when CONFIG_PREEMPT
[karo-tx-linux.git] / include / linux / sched.h
index a06d09ebd5c6f5839f433bfd28578d085cf04c9d..7907845c234804c1010ffd14f77308b1d1842515 100644 (file)
@@ -932,6 +932,7 @@ struct sched_entity {
 struct sched_rt_entity {
        struct list_head run_list;
        unsigned int time_slice;
+       unsigned long timeout;
 };
 
 struct task_struct {
@@ -1884,7 +1885,18 @@ static inline int need_resched(void)
  * cond_resched_lock() will drop the spinlock before scheduling,
  * cond_resched_softirq() will enable bhs before scheduling.
  */
-extern int cond_resched(void);
+#ifdef CONFIG_PREEMPT
+static inline int cond_resched(void)
+{
+       return 0;
+}
+#else
+extern int _cond_resched(void);
+static inline int cond_resched(void)
+{
+       return _cond_resched();
+}
+#endif
 extern int cond_resched_lock(spinlock_t * lock);
 extern int cond_resched_softirq(void);