-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 31775 b: refs/heads/master c: 9a11b49 h: refs/heads/master i: 31773: 35b0ef9 31771: b3aa00b 31767: 0aa5100 31759: a27161a 31743: 8db48ef v: v3
- Loading branch information
Ingo Molnar
authored and
Linus Torvalds
committed
Jul 3, 2006
1 parent
9a8c7a4
commit 128eae2
Showing
26 changed files
with
266 additions
and
568 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: fb7e42413a098cc45b3adf858da290033af62bae | ||
refs/heads/master: 9a11b49a805665e13a56aa067afaf81d43ec1514 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
#ifndef __LINUX_DEBUG_LOCKING_H | ||
#define __LINUX_DEBUG_LOCKING_H | ||
|
||
extern int debug_locks; | ||
extern int debug_locks_silent; | ||
|
||
/* | ||
* Generic 'turn off all lock debugging' function: | ||
*/ | ||
extern int debug_locks_off(void); | ||
|
||
/* | ||
* In the debug case we carry the caller's instruction pointer into | ||
* other functions, but we dont want the function argument overhead | ||
* in the nondebug case - hence these macros: | ||
*/ | ||
#define _RET_IP_ (unsigned long)__builtin_return_address(0) | ||
#define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; }) | ||
|
||
#define DEBUG_LOCKS_WARN_ON(c) \ | ||
({ \ | ||
int __ret = 0; \ | ||
\ | ||
if (unlikely(c)) { \ | ||
if (debug_locks_off()) \ | ||
WARN_ON(1); \ | ||
__ret = 1; \ | ||
} \ | ||
__ret; \ | ||
}) | ||
|
||
#ifdef CONFIG_SMP | ||
# define SMP_DEBUG_LOCKS_WARN_ON(c) DEBUG_LOCKS_WARN_ON(c) | ||
#else | ||
# define SMP_DEBUG_LOCKS_WARN_ON(c) do { } while (0) | ||
#endif | ||
|
||
#ifdef CONFIG_DEBUG_LOCKING_API_SELFTESTS | ||
extern void locking_selftest(void); | ||
#else | ||
# define locking_selftest() do { } while (0) | ||
#endif | ||
|
||
#ifdef CONFIG_LOCKDEP | ||
extern void debug_show_all_locks(void); | ||
extern void debug_show_held_locks(struct task_struct *task); | ||
extern void debug_check_no_locks_freed(const void *from, unsigned long len); | ||
extern void debug_check_no_locks_held(struct task_struct *task); | ||
#else | ||
static inline void debug_show_all_locks(void) | ||
{ | ||
} | ||
|
||
static inline void debug_show_held_locks(struct task_struct *task) | ||
{ | ||
} | ||
|
||
static inline void | ||
debug_check_no_locks_freed(const void *from, unsigned long len) | ||
{ | ||
} | ||
|
||
static inline void | ||
debug_check_no_locks_held(struct task_struct *task) | ||
{ | ||
} | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.