diff options
| author | Ingo Molnar <mingo@elte.hu> | 2006-07-03 00:24:30 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-03 15:27:01 -0700 | 
| commit | 9e7f4d451e99b7592a96ad0efaf8bcc1e7b2f854 (patch) | |
| tree | bc61ead5d497222f93acebbb5cbe1debf6b758ee /kernel/mutex.h | |
| parent | 61f4c3d6db3ecbdd4e1a2a7a1710c1410d085dd1 (diff) | |
| download | olio-linux-3.10-9e7f4d451e99b7592a96ad0efaf8bcc1e7b2f854.tar.xz olio-linux-3.10-9e7f4d451e99b7592a96ad0efaf8bcc1e7b2f854.zip  | |
[PATCH] lockdep: rename DEBUG_WARN_ON()
Rename DEBUG_WARN_ON() to the less generic DEBUG_LOCKS_WARN_ON() name, so that
it's clear that this is a lock-debugging internal mechanism.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/mutex.h')
| -rw-r--r-- | kernel/mutex.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/mutex.h b/kernel/mutex.h index 06918994725..7e1ed48d1a6 100644 --- a/kernel/mutex.h +++ b/kernel/mutex.h @@ -16,7 +16,7 @@  #define mutex_remove_waiter(lock, waiter, ti) \  		__list_del((waiter)->list.prev, (waiter)->list.next) -#define DEBUG_WARN_ON(c)				do { } while (0) +#define DEBUG_LOCKS_WARN_ON(c)				do { } while (0)  #define debug_mutex_set_owner(lock, new_owner)		do { } while (0)  #define debug_mutex_clear_owner(lock)			do { } while (0)  #define debug_mutex_init_waiter(waiter)			do { } while (0)  |