summarylogtreecommitdiffstats
path: root/bfs-sched.patch
diff options
context:
space:
mode:
Diffstat (limited to 'bfs-sched.patch')
-rw-r--r--bfs-sched.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/bfs-sched.patch b/bfs-sched.patch
deleted file mode 100644
index e3e87f85aeea..000000000000
--- a/bfs-sched.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- 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();