blob: 3a1988202731e55563315703ed3f5cfb52f8abc9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_SMPLOCK_H
2#define __LINUX_SMPLOCK_H
3
Al Virof0373602005-11-13 16:06:57 -08004#ifdef CONFIG_LOCK_KERNEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
Linus Torvalds1da177e2005-04-16 15:20:36 -07007extern int __lockfunc __reacquire_kernel_lock(void);
8extern void __lockfunc __release_kernel_lock(void);
9
10/*
11 * Release/re-acquire global kernel lock for the scheduler
12 */
13#define release_kernel_lock(tsk) do { \
14 if (unlikely((tsk)->lock_depth >= 0)) \
15 __release_kernel_lock(); \
16} while (0)
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018static inline int reacquire_kernel_lock(struct task_struct *task)
19{
20 if (unlikely(task->lock_depth >= 0))
Ingo Molnar6478d882008-01-25 21:08:33 +010021 return __reacquire_kernel_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 return 0;
23}
24
Frederic Weisbecker925936e2009-09-28 17:12:49 +020025extern void __lockfunc
26_lock_kernel(const char *func, const char *file, int line)
27__acquires(kernel_lock);
Frederic Weisbecker96a2c462009-08-01 01:34:24 +020028
Frederic Weisbecker925936e2009-09-28 17:12:49 +020029extern void __lockfunc
30_unlock_kernel(const char *func, const char *file, int line)
31__releases(kernel_lock);
Frederic Weisbecker96a2c462009-08-01 01:34:24 +020032
Frederic Weisbecker925936e2009-09-28 17:12:49 +020033#define lock_kernel() do { \
34 _lock_kernel(__func__, __FILE__, __LINE__); \
35} while (0)
36
37#define unlock_kernel() do { \
38 _unlock_kernel(__func__, __FILE__, __LINE__); \
39} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Jonathan Corbet0b280672008-05-18 14:27:41 -060041/*
42 * Various legacy drivers don't really need the BKL in a specific
43 * function, but they *do* need to know that the BKL became available.
44 * This function just avoids wrapping a bunch of lock/unlock pairs
45 * around code which doesn't really need it.
46 */
47static inline void cycle_kernel_lock(void)
48{
49 lock_kernel();
50 unlock_kernel();
51}
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#else
54
Arnd Bergmann6de5bd12010-09-11 18:00:57 +020055#ifdef CONFIG_BKL /* provoke build bug if not set */
Frederic Weisbecker925936e2009-09-28 17:12:49 +020056#define lock_kernel()
57#define unlock_kernel()
Jonathan Corbet0b280672008-05-18 14:27:41 -060058#define cycle_kernel_lock() do { } while(0)
Arnd Bergmann6de5bd12010-09-11 18:00:57 +020059#endif /* CONFIG_BKL */
60
61#define release_kernel_lock(task) do { } while(0)
62#define reacquire_kernel_lock(task) 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#endif /* CONFIG_LOCK_KERNEL */
65#endif /* __LINUX_SMPLOCK_H */