summarylogtreecommitdiffstats
path: root/bfs-sched.patch
diff options
context:
space:
mode:
authorArch Nous2016-12-06 16:46:57 +0200
committerArch Nous2016-12-06 16:51:03 +0200
commit6f970f3b68b5fd66ebde7b0cbe1e62ce7649de5a (patch)
tree7302a61ba226f2367b01dc034bc4ff5783e7e5c8 /bfs-sched.patch
parent83be696a6b6c90d1328b9de3072d13dec0366198 (diff)
downloadaur-6f970f3b68b5fd66ebde7b0cbe1e62ce7649de5a.tar.gz
4.4.36-pf
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();