add 3rd party/custom patches
3rd patchs (in alphabetical order): - bbr3 - ntsync5 - openwrt - pf-kernel - xanmod - zen no configuration changes for now
This commit is contained in:
32
debian/patches/patchset-xanmod/clearlinux/0003-locking-rwsem-spin-faster.patch
vendored
Normal file
32
debian/patches/patchset-xanmod/clearlinux/0003-locking-rwsem-spin-faster.patch
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
From f57e26428b29ddcdf58b35659002293bde1bf281 Mon Sep 17 00:00:00 2001
|
||||
From: Arjan van de Ven <arjan@linux.intel.com>
|
||||
Date: Sun, 18 Feb 2018 23:35:41 +0000
|
||||
Subject: [PATCH 3/4] locking: rwsem: spin faster
|
||||
|
||||
tweak rwsem owner spinning a bit
|
||||
|
||||
Signed-off-by: Alexandre Frade <kernel@xanmod.org>
|
||||
---
|
||||
kernel/locking/rwsem.c | 4 +++-
|
||||
1 file changed, 3 insertions(+), 1 deletion(-)
|
||||
|
||||
--- a/kernel/locking/rwsem.c
|
||||
+++ b/kernel/locking/rwsem.c
|
||||
@@ -749,6 +749,7 @@ rwsem_spin_on_owner(struct rw_semaphore
|
||||
struct task_struct *new, *owner;
|
||||
unsigned long flags, new_flags;
|
||||
enum owner_state state;
|
||||
+ int i = 0;
|
||||
|
||||
lockdep_assert_preemption_disabled();
|
||||
|
||||
@@ -785,7 +786,8 @@ rwsem_spin_on_owner(struct rw_semaphore
|
||||
break;
|
||||
}
|
||||
|
||||
- cpu_relax();
|
||||
+ if (i++ > 1000)
|
||||
+ cpu_relax();
|
||||
}
|
||||
|
||||
return state;
|
Reference in New Issue
Block a user