diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/kernel.h | 4 | ||||
-rw-r--r-- | include/linux/sched.h | 13 |
2 files changed, 14 insertions, 3 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 94bc99656963..a7283c9beadf 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
@@ -105,8 +105,8 @@ struct user; | |||
105 | * supposed to. | 105 | * supposed to. |
106 | */ | 106 | */ |
107 | #ifdef CONFIG_PREEMPT_VOLUNTARY | 107 | #ifdef CONFIG_PREEMPT_VOLUNTARY |
108 | extern int cond_resched(void); | 108 | extern int _cond_resched(void); |
109 | # define might_resched() cond_resched() | 109 | # define might_resched() _cond_resched() |
110 | #else | 110 | #else |
111 | # define might_resched() do { } while (0) | 111 | # define might_resched() do { } while (0) |
112 | #endif | 112 | #endif |
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 | */ |
1888 | extern int cond_resched(void); | 1888 | #ifdef CONFIG_PREEMPT |
1889 | static inline int cond_resched(void) | ||
1890 | { | ||
1891 | return 0; | ||
1892 | } | ||
1893 | #else | ||
1894 | extern int _cond_resched(void); | ||
1895 | static inline int cond_resched(void) | ||
1896 | { | ||
1897 | return _cond_resched(); | ||
1898 | } | ||
1899 | #endif | ||
1889 | extern int cond_resched_lock(spinlock_t * lock); | 1900 | extern int cond_resched_lock(spinlock_t * lock); |
1890 | extern int cond_resched_softirq(void); | 1901 | extern int cond_resched_softirq(void); |
1891 | 1902 | ||