Import 2.3.18pre1
[davej-history.git] / include / asm-sparc64 / smplock.h
blob5791e3c7acb3392942e249c4ec306816b501d459
1 /*
2 * <asm/smplock.h>
4 * Default SMP lock implementation
5 */
6 #include <linux/sched.h>
7 #include <linux/interrupt.h>
8 #include <linux/spinlock.h>
10 extern spinlock_t kernel_flag;
13 * Release global kernel lock and global interrupt lock
15 #define release_kernel_lock(task, cpu) \
16 do { \
17 if (task->lock_depth >= 0) \
18 spin_unlock(&kernel_flag); \
19 release_irqlock(cpu); \
20 __sti(); \
21 } while (0)
24 * Re-acquire the kernel lock
26 #define reacquire_kernel_lock(task) \
27 do { \
28 if (task->lock_depth >= 0) \
29 spin_lock(&kernel_flag); \
30 } while (0)
34 * Getting the big kernel lock.
36 * This cannot happen asynchronously,
37 * so we only need to worry about other
38 * CPU's.
40 #define lock_kernel() \
41 do { \
42 if (!++current->lock_depth) \
43 spin_lock(&kernel_flag); \
44 } while(0)
46 #define unlock_kernel() \
47 do { \
48 if (--current->lock_depth < 0) \
49 spin_unlock(&kernel_flag); \
50 } while(0)