public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lockdep: Use KSYM_NAME_LEN'ed buffer for __get_key_name
@ 2012-10-20 19:05 Cyrill Gorcunov
  2012-10-24 12:55 ` [tip:core/locking] lockdep: Use KSYM_NAME_LEN' ed buffer for __get_key_name() tip-bot for Cyrill Gorcunov
  0 siblings, 1 reply; 2+ messages in thread
From: Cyrill Gorcunov @ 2012-10-20 19:05 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: LKML

Not a big deal, but since other __get_key_name callers
use it lets be consistent.

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
---
 kernel/lockdep_proc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6.git/kernel/lockdep_proc.c
===================================================================
--- linux-2.6.git.orig/kernel/lockdep_proc.c
+++ linux-2.6.git/kernel/lockdep_proc.c
@@ -39,7 +39,7 @@ static void l_stop(struct seq_file *m, v
 
 static void print_name(struct seq_file *m, struct lock_class *class)
 {
-	char str[128];
+	char str[KSYM_NAME_LEN];
 	const char *name = class->name;
 
 	if (!name) {

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-10-24 12:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-20 19:05 [PATCH] lockdep: Use KSYM_NAME_LEN'ed buffer for __get_key_name Cyrill Gorcunov
2012-10-24 12:55 ` [tip:core/locking] lockdep: Use KSYM_NAME_LEN' ed buffer for __get_key_name() tip-bot for Cyrill Gorcunov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox