|
@@ -6541,6 +6541,11 @@ SYSCALL_DEFINE0(sched_yield)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+static inline int should_resched(void)
|
|
|
+{
|
|
|
+ return need_resched() && !(preempt_count() & PREEMPT_ACTIVE);
|
|
|
+}
|
|
|
+
|
|
|
static void __cond_resched(void)
|
|
|
{
|
|
|
#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
|
|
@@ -6560,8 +6565,7 @@ static void __cond_resched(void)
|
|
|
|
|
|
int __sched _cond_resched(void)
|
|
|
{
|
|
|
- if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
|
|
|
- system_state == SYSTEM_RUNNING) {
|
|
|
+ if (should_resched()) {
|
|
|
__cond_resched();
|
|
|
return 1;
|
|
|
}
|
|
@@ -6579,12 +6583,12 @@ EXPORT_SYMBOL(_cond_resched);
|
|
|
*/
|
|
|
int cond_resched_lock(spinlock_t *lock)
|
|
|
{
|
|
|
- int resched = need_resched() && system_state == SYSTEM_RUNNING;
|
|
|
+ int resched = should_resched();
|
|
|
int ret = 0;
|
|
|
|
|
|
if (spin_needbreak(lock) || resched) {
|
|
|
spin_unlock(lock);
|
|
|
- if (resched && need_resched())
|
|
|
+ if (resched)
|
|
|
__cond_resched();
|
|
|
else
|
|
|
cpu_relax();
|
|
@@ -6599,7 +6603,7 @@ int __sched cond_resched_softirq(void)
|
|
|
{
|
|
|
BUG_ON(!in_softirq());
|
|
|
|
|
|
- if (need_resched() && system_state == SYSTEM_RUNNING) {
|
|
|
+ if (should_resched()) {
|
|
|
local_bh_enable();
|
|
|
__cond_resched();
|
|
|
local_bh_disable();
|