MINI2440: remove __initdata from some structs
[linux-2.6/mini2440.git] / lib / kernel_lock.c
blob39f1029e352586ca4640d3d0e6b1b4b28f120312
1 /*
2 * lib/kernel_lock.c
4 * This is the traditional BKL - big kernel lock. Largely
5 * relegated to obsolescence, but used by various less
6 * important (or lazy) subsystems.
7 */
8 #include <linux/smp_lock.h>
9 #include <linux/module.h>
10 #include <linux/kallsyms.h>
11 #include <linux/semaphore.h>
14 * The 'big kernel lock'
16 * This spinlock is taken and released recursively by lock_kernel()
17 * and unlock_kernel(). It is transparently dropped and reacquired
18 * over schedule(). It is used to protect legacy code that hasn't
19 * been migrated to a proper locking design yet.
21 * Don't use in new code.
23 static __cacheline_aligned_in_smp DEFINE_SPINLOCK(kernel_flag);
27 * Acquire/release the underlying lock from the scheduler.
29 * This is called with preemption disabled, and should
30 * return an error value if it cannot get the lock and
31 * TIF_NEED_RESCHED gets set.
33 * If it successfully gets the lock, it should increment
34 * the preemption count like any spinlock does.
36 * (This works on UP too - _raw_spin_trylock will never
37 * return false in that case)
39 int __lockfunc __reacquire_kernel_lock(void)
41 while (!_raw_spin_trylock(&kernel_flag)) {
42 if (need_resched())
43 return -EAGAIN;
44 cpu_relax();
46 preempt_disable();
47 return 0;
50 void __lockfunc __release_kernel_lock(void)
52 _raw_spin_unlock(&kernel_flag);
53 preempt_enable_no_resched();
57 * These are the BKL spinlocks - we try to be polite about preemption.
58 * If SMP is not on (ie UP preemption), this all goes away because the
59 * _raw_spin_trylock() will always succeed.
61 #ifdef CONFIG_PREEMPT
62 static inline void __lock_kernel(void)
64 preempt_disable();
65 if (unlikely(!_raw_spin_trylock(&kernel_flag))) {
67 * If preemption was disabled even before this
68 * was called, there's nothing we can be polite
69 * about - just spin.
71 if (preempt_count() > 1) {
72 _raw_spin_lock(&kernel_flag);
73 return;
77 * Otherwise, let's wait for the kernel lock
78 * with preemption enabled..
80 do {
81 preempt_enable();
82 while (spin_is_locked(&kernel_flag))
83 cpu_relax();
84 preempt_disable();
85 } while (!_raw_spin_trylock(&kernel_flag));
89 #else
92 * Non-preemption case - just get the spinlock
94 static inline void __lock_kernel(void)
96 _raw_spin_lock(&kernel_flag);
98 #endif
100 static inline void __unlock_kernel(void)
103 * the BKL is not covered by lockdep, so we open-code the
104 * unlocking sequence (and thus avoid the dep-chain ops):
106 _raw_spin_unlock(&kernel_flag);
107 preempt_enable();
111 * Getting the big kernel lock.
113 * This cannot happen asynchronously, so we only need to
114 * worry about other CPU's.
116 void __lockfunc lock_kernel(void)
118 int depth = current->lock_depth+1;
119 if (likely(!depth))
120 __lock_kernel();
121 current->lock_depth = depth;
124 void __lockfunc unlock_kernel(void)
126 BUG_ON(current->lock_depth < 0);
127 if (likely(--current->lock_depth < 0))
128 __unlock_kernel();
131 EXPORT_SYMBOL(lock_kernel);
132 EXPORT_SYMBOL(unlock_kernel);