[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20061207091852.GA32181@elte.hu>
Date: Thu, 7 Dec 2006 10:18:52 +0100
From: Ingo Molnar <mingo@...e.hu>
To: Andrew Morton <akpm@...l.org>
Cc: linux-kernel@...r.kernel.org
Subject: [atch] lockdep: filter off by default
Subject: [patch] lockdep: filter off by default
From: Ingo Molnar <mingo@...e.hu>
fix typo in the class_filter() function. (filtering is not used
by default so this only affects lockdep-internal debugging cases)
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
kernel/lockdep.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: linux/kernel/lockdep.c
===================================================================
--- linux.orig/kernel/lockdep.c
+++ linux/kernel/lockdep.c
@@ -179,8 +179,8 @@ static int class_filter(struct lock_clas
!strcmp(class->name, "&struct->lockfield"))
return 1;
#endif
- /* Allow everything else. 0 would be filter everything else */
- return 1;
+ /* Filter everything else. 1 would be to allow everything else */
+ return 0;
}
#endif
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists