aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2004-10-25 01:21:01 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-10-25 01:21:01 -0700
commit59a7718e80cd84ffc338cda7e5531d530e3d0749 (patch)
treefdb8297060313d509359f72f8593adc21b661358 /lib
parent6f60f5cfdd2a51b82479d8285ee2344e74ccb098 (diff)
downloadhistory-59a7718e80cd84ffc338cda7e5531d530e3d0749.tar.gz
Allow BKL re-acquire to fail, causing us to re-schedule.
This allows for low-latency BKL contention even with preemption. Previously, since preemption is disabled over context switches, re-acquiring the kernel lock when resuming a process would be non-preemtible.
Diffstat (limited to 'lib')
-rw-r--r--lib/kernel_lock.c44
1 files changed, 34 insertions, 10 deletions
diff --git a/lib/kernel_lock.c b/lib/kernel_lock.c
index 59fcbf3de282bf..48dc05a13963da 100644
--- a/lib/kernel_lock.c
+++ b/lib/kernel_lock.c
@@ -24,16 +24,40 @@ static spinlock_t kernel_flag __cacheline_aligned_in_smp = SPIN_LOCK_UNLOCKED;
/*
* Acquire/release the underlying lock from the scheduler.
*
- * The scheduler release and re-acquire currently always happen
- * with preemption disabled. Which is likely a bug in the acquire
- * case...
+ * This is called with preemption disabled, and should
+ * return an error value if it cannot get the lock and
+ * TIF_NEED_RESCHED gets set.
*
- * Regardless, we try to be polite about preemption. If SMP is
- * not on (ie UP preemption), this all goes away because the
+ * If it successfully gets the lock, it should increment
+ * the preemption count like any spinlock does.
+ *
+ * (This works on UP too - _raw_spin_trylock will never
+ * return false in that case)
+ */
+int __lockfunc get_kernel_lock(void)
+{
+ while (!_raw_spin_trylock(&kernel_flag)) {
+ if (test_thread_flag(TIF_NEED_RESCHED))
+ return -EAGAIN;
+ cpu_relax();
+ }
+ preempt_disable();
+ return 0;
+}
+
+void __lockfunc put_kernel_lock(void)
+{
+ _raw_spin_unlock(&kernel_flag);
+ preempt_enable_no_resched();
+}
+
+/*
+ * These are the BKL spinlocks - we try to be polite about preemption.
+ * If SMP is not on (ie UP preemption), this all goes away because the
* _raw_spin_trylock() will always succeed.
*/
#ifdef CONFIG_PREEMPT
-inline void __lockfunc get_kernel_lock(void)
+static inline void __lock_kernel(void)
{
preempt_disable();
if (unlikely(!_raw_spin_trylock(&kernel_flag))) {
@@ -65,13 +89,13 @@ inline void __lockfunc get_kernel_lock(void)
/*
* Non-preemption case - just get the spinlock
*/
-inline void __lockfunc get_kernel_lock(void)
+static inline void __lock_kernel(void)
{
_raw_spin_lock(&kernel_flag);
}
#endif
-inline void __lockfunc put_kernel_lock(void)
+static inline void __unlock_kernel(void)
{
_raw_spin_unlock(&kernel_flag);
preempt_enable();
@@ -87,7 +111,7 @@ void __lockfunc lock_kernel(void)
{
int depth = current->lock_depth+1;
if (likely(!depth))
- get_kernel_lock();
+ __lock_kernel();
current->lock_depth = depth;
}
@@ -95,7 +119,7 @@ void __lockfunc unlock_kernel(void)
{
BUG_ON(current->lock_depth < 0);
if (likely(--current->lock_depth < 0))
- put_kernel_lock();
+ __unlock_kernel();
}
EXPORT_SYMBOL(lock_kernel);