diff options
author | Adrien Schildknecht <adrien+dev@schischi.me> | 2015-02-12 14:01:37 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-14 11:32:59 -0800 |
commit | d347efeb16d3d5150cb7f8d50b05f388b572840e (patch) | |
tree | 41d0b2f4ae5aca0c08ccd823e1a353ebe7dbf596 /include | |
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>
Diffstat (limited to 'include')
-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 { struct optimistic_spin_queue osq; /* Spinner MCS lock */ #endif #ifdef CONFIG_DEBUG_MUTEXES - const char *name; void *magic; #endif #ifdef CONFIG_DEBUG_LOCK_ALLOC |