dect
/
linux-2.6
Archived
13
0
Fork 0

lockdep: Use KSYM_NAME_LEN'ed buffer for __get_key_name()

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

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/20121020190519.GH25467@moon
Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
Cyrill Gorcunov 2012-10-20 23:05:19 +04:00 committed by Ingo Molnar
parent 0e9e3e306c
commit 99fb4a122e
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ static void l_stop(struct seq_file *m, void *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) {