Blame view

include/linux/smp_lock.h 1.6 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
  #ifndef __LINUX_SMPLOCK_H
  #define __LINUX_SMPLOCK_H
f037360f2   Al Viro   [PATCH] m68k: thr...
3
  #ifdef CONFIG_LOCK_KERNEL
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4
  #include <linux/sched.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
7
8
9
10
11
12
13
14
15
16
17
  #define kernel_locked()		(current->lock_depth >= 0)
  
  extern int __lockfunc __reacquire_kernel_lock(void);
  extern void __lockfunc __release_kernel_lock(void);
  
  /*
   * Release/re-acquire global kernel lock for the scheduler
   */
  #define release_kernel_lock(tsk) do { 		\
  	if (unlikely((tsk)->lock_depth >= 0))	\
  		__release_kernel_lock();	\
  } while (0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
18
19
20
  static inline int reacquire_kernel_lock(struct task_struct *task)
  {
  	if (unlikely(task->lock_depth >= 0))
6478d8800   Ingo Molnar   sched: remove the...
21
  		return __reacquire_kernel_lock();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
23
  	return 0;
  }
925936ebf   Frederic Weisbecker   tracing: Pushdown...
24
25
26
  extern void __lockfunc
  _lock_kernel(const char *func, const char *file, int line)
  __acquires(kernel_lock);
96a2c464d   Frederic Weisbecker   tracing/bkl: Add ...
27

925936ebf   Frederic Weisbecker   tracing: Pushdown...
28
29
30
  extern void __lockfunc
  _unlock_kernel(const char *func, const char *file, int line)
  __releases(kernel_lock);
96a2c464d   Frederic Weisbecker   tracing/bkl: Add ...
31

925936ebf   Frederic Weisbecker   tracing: Pushdown...
32
33
34
35
36
37
38
  #define lock_kernel() do {					\
  	_lock_kernel(__func__, __FILE__, __LINE__);		\
  } while (0)
  
  #define unlock_kernel()	do {					\
  	_unlock_kernel(__func__, __FILE__, __LINE__);		\
  } while (0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39

0b2806768   Jonathan Corbet   Add cycle_kernel_...
40
41
42
43
44
45
46
47
48
49
50
  /*
   * Various legacy drivers don't really need the BKL in a specific
   * function, but they *do* need to know that the BKL became available.
   * This function just avoids wrapping a bunch of lock/unlock pairs
   * around code which doesn't really need it.
   */
  static inline void cycle_kernel_lock(void)
  {
  	lock_kernel();
  	unlock_kernel();
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
51
  #else
925936ebf   Frederic Weisbecker   tracing: Pushdown...
52
53
  #define lock_kernel()
  #define unlock_kernel()
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
54
  #define release_kernel_lock(task)		do { } while(0)
0b2806768   Jonathan Corbet   Add cycle_kernel_...
55
  #define cycle_kernel_lock()			do { } while(0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
56
57
58
59
60
  #define reacquire_kernel_lock(task)		0
  #define kernel_locked()				1
  
  #endif /* CONFIG_LOCK_KERNEL */
  #endif /* __LINUX_SMPLOCK_H */