smp_lock.h 1.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef __LINUX_SMPLOCK_H
#define __LINUX_SMPLOCK_H

A
Al Viro 已提交
4
#ifdef CONFIG_LOCK_KERNEL
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#include <linux/sched.h>

#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)

static inline int reacquire_kernel_lock(struct task_struct *task)
{
	if (unlikely(task->lock_depth >= 0))
23
		return __reacquire_kernel_lock();
L
Linus Torvalds 已提交
24 25 26
	return 0;
}

27 28 29
extern void __lockfunc
_lock_kernel(const char *func, const char *file, int line)
__acquires(kernel_lock);
30

31 32 33
extern void __lockfunc
_unlock_kernel(const char *func, const char *file, int line)
__releases(kernel_lock);
34

35 36 37 38 39 40 41
#define lock_kernel() do {					\
	_lock_kernel(__func__, __FILE__, __LINE__);		\
} while (0)

#define unlock_kernel()	do {					\
	_unlock_kernel(__func__, __FILE__, __LINE__);		\
} while (0)
L
Linus Torvalds 已提交
42

J
Jonathan Corbet 已提交
43 44 45 46 47 48 49 50 51 52 53 54
/*
 * 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();
}

L
Linus Torvalds 已提交
55 56
#else

57 58
#define lock_kernel()
#define unlock_kernel()
L
Linus Torvalds 已提交
59
#define release_kernel_lock(task)		do { } while(0)
J
Jonathan Corbet 已提交
60
#define cycle_kernel_lock()			do { } while(0)
L
Linus Torvalds 已提交
61 62 63 64 65
#define reacquire_kernel_lock(task)		0
#define kernel_locked()				1

#endif /* CONFIG_LOCK_KERNEL */
#endif /* __LINUX_SMPLOCK_H */