Skip to content

Commit

Permalink
lockdep: Use KSYM_NAME_LEN'ed buffer for __get_key_name()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Cyrill Gorcunov authored and Ingo Molnar committed Oct 24, 2012
1 parent 0e9e3e3 commit 99fb4a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/lockdep_proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 99fb4a1

Please sign in to comment.