|
@@ -2884,6 +2884,21 @@ void __sched schedule_preempt_disabled(void)
|
|
|
preempt_disable();
|
|
|
}
|
|
|
|
|
|
+static void preempt_schedule_common(void)
|
|
|
+{
|
|
|
+ do {
|
|
|
+ __preempt_count_add(PREEMPT_ACTIVE);
|
|
|
+ __schedule();
|
|
|
+ __preempt_count_sub(PREEMPT_ACTIVE);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Check again in case we missed a preemption opportunity
|
|
|
+ * between schedule and now.
|
|
|
+ */
|
|
|
+ barrier();
|
|
|
+ } while (need_resched());
|
|
|
+}
|
|
|
+
|
|
|
#ifdef CONFIG_PREEMPT
|
|
|
/*
|
|
|
* this is the entry point to schedule() from in-kernel preemption
|
|
@@ -2899,17 +2914,7 @@ asmlinkage __visible void __sched notrace preempt_schedule(void)
|
|
|
if (likely(!preemptible()))
|
|
|
return;
|
|
|
|
|
|
- do {
|
|
|
- __preempt_count_add(PREEMPT_ACTIVE);
|
|
|
- __schedule();
|
|
|
- __preempt_count_sub(PREEMPT_ACTIVE);
|
|
|
-
|
|
|
- /*
|
|
|
- * Check again in case we missed a preemption opportunity
|
|
|
- * between schedule and now.
|
|
|
- */
|
|
|
- barrier();
|
|
|
- } while (need_resched());
|
|
|
+ preempt_schedule_common();
|
|
|
}
|
|
|
NOKPROBE_SYMBOL(preempt_schedule);
|
|
|
EXPORT_SYMBOL(preempt_schedule);
|
|
@@ -4209,17 +4214,10 @@ SYSCALL_DEFINE0(sched_yield)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static void __cond_resched(void)
|
|
|
-{
|
|
|
- __preempt_count_add(PREEMPT_ACTIVE);
|
|
|
- __schedule();
|
|
|
- __preempt_count_sub(PREEMPT_ACTIVE);
|
|
|
-}
|
|
|
-
|
|
|
int __sched _cond_resched(void)
|
|
|
{
|
|
|
if (should_resched()) {
|
|
|
- __cond_resched();
|
|
|
+ preempt_schedule_common();
|
|
|
return 1;
|
|
|
}
|
|
|
return 0;
|
|
@@ -4244,7 +4242,7 @@ int __cond_resched_lock(spinlock_t *lock)
|
|
|
if (spin_needbreak(lock) || resched) {
|
|
|
spin_unlock(lock);
|
|
|
if (resched)
|
|
|
- __cond_resched();
|
|
|
+ preempt_schedule_common();
|
|
|
else
|
|
|
cpu_relax();
|
|
|
ret = 1;
|
|
@@ -4260,7 +4258,7 @@ int __sched __cond_resched_softirq(void)
|
|
|
|
|
|
if (should_resched()) {
|
|
|
local_bh_enable();
|
|
|
- __cond_resched();
|
|
|
+ preempt_schedule_common();
|
|
|
local_bh_disable();
|
|
|
return 1;
|
|
|
}
|