Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755712AbbBLNCS (ORCPT ); Thu, 12 Feb 2015 08:02:18 -0500 Received: from mail-wg0-f52.google.com ([74.125.82.52]:63782 "EHLO mail-wg0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755220AbbBLNCR (ORCPT ); Thu, 12 Feb 2015 08:02:17 -0500 From: Adrien Schildknecht To: mingo@kernel.org, peterz@infradead.org, jason.low2@hp.com, davidlohr@hp.com, rdunlap@infradead.org, fruggeri@arista.com Cc: linux-kernel@vger.kernel.org, Adrien Schildknecht Subject: [PATCH] mutex: remove unused field "name" in debug mode Date: Thu, 12 Feb 2015 14:01:37 +0100 Message-Id: <1423746097-1834-1-git-send-email-adrien+dev@schischi.me> X-Mailer: git-send-email 2.2.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 843 Lines: 28 This field is unused and uninitialized since commit 9a11b49a8056 ("[PATCH] lockdep: better lock debugging") Signed-off-by: Adrien Schildknecht --- include/linux/mutex.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/mutex.h b/include/linux/mutex.h index cc31498..2cb7531 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 -- 2.2.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/