summarylogtreecommitdiffstats
path: root/bfs-sched.patch
blob: e3e87f85aeeaaac248e714bf5553bf83a1a143a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
--- kernel/sched/bfs.c	2015-12-24 02:30:51.269709101 +0200
+++ kernel/sched/bfs-new_sched.c	2015-12-27 03:46:56.583051131 +0200
@@ -4558,7 +4558,7 @@
 
 int __sched _cond_resched(void)
 {
-	if (should_resched()) {
+	if (should_resched(0)) {
 		__cond_resched();
 		return 1;
 	}
@@ -4576,7 +4576,7 @@
  */
 int __cond_resched_lock(spinlock_t *lock)
 {
-	int resched = should_resched();
+	int resched = should_resched(PREEMPT_LOCK_OFFSET);
 	int ret = 0;
 
 	lockdep_assert_held(lock);
@@ -4598,7 +4598,7 @@
 {
 	BUG_ON(!in_softirq());
 
-	if (should_resched()) {
+	if (should_resched(SOFTIRQ_DISABLE_OFFSET)) {
 		local_bh_enable();
 		__cond_resched();
 		local_bh_disable();