diff options
author | Adrien Schildknecht <adrien+dev@schischi.me> | 2015-02-12 08:01:37 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-14 14:32:59 -0500 |
commit | d347efeb16d3d5150cb7f8d50b05f388b572840e (patch) | |
tree | 41d0b2f4ae5aca0c08ccd823e1a353ebe7dbf596 | |
parent | c833e17e276bd5d5f174aa924c4f102754ebc2be (diff) |
mutex: remove unused field "name" in debug mode
This field is unused and uninitialized since commit 9a11b49a8056
("[PATCH] lockdep: better lock debugging")
Signed-off-by: Adrien Schildknecht <adrien+dev@schischi.me>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/mutex.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/mutex.h b/include/linux/mutex.h index cc31498fc526..2cb7531e7d7a 100644 --- a/include/linux/mutex.h +++ b/include/linux/mutex.h | |||
@@ -59,7 +59,6 @@ struct mutex { | |||
59 | struct optimistic_spin_queue osq; /* Spinner MCS lock */ | 59 | struct optimistic_spin_queue osq; /* Spinner MCS lock */ |
60 | #endif | 60 | #endif |
61 | #ifdef CONFIG_DEBUG_MUTEXES | 61 | #ifdef CONFIG_DEBUG_MUTEXES |
62 | const char *name; | ||
63 | void *magic; | 62 | void *magic; |
64 | #endif | 63 | #endif |
65 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 64 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |