perf kmem: Increase "Hit" column length

It's fairly easy to overflow the "Hit" column with just few
seconds of tracing so increase the column length to avoid broken
formatting.

Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Li Zefan <lizf@cn.fujitsu.com>
Cc: Xiao Guangrong <xiaoguangrong@cn.fujitsu.com>
LKML-Reference: <1263921803-10214-1-git-send-email-penberg@cs.helsinki.fi>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by Pekka Enberg and committed by Ingo Molnar 47103277 0bb7a95f

+2 -2
+2 -2
tools/perf/builtin-kmem.c
··· 375 375 376 376 printf("%.102s\n", graph_dotted_line); 377 377 printf(" %-34s |", is_caller ? "Callsite": "Alloc Ptr"); 378 - printf(" Total_alloc/Per | Total_req/Per | Hit | Ping-pong | Frag\n"); 378 + printf(" Total_alloc/Per | Total_req/Per | Hit | Ping-pong | Frag\n"); 379 379 printf("%.102s\n", graph_dotted_line); 380 380 381 381 next = rb_first(root); ··· 401 401 snprintf(buf, sizeof(buf), "%#Lx", addr); 402 402 printf(" %-34s |", buf); 403 403 404 - printf(" %9llu/%-5lu | %9llu/%-5lu | %6lu | %8lu | %6.3f%%\n", 404 + printf(" %9llu/%-5lu | %9llu/%-5lu | %8lu | %8lu | %6.3f%%\n", 405 405 (unsigned long long)data->bytes_alloc, 406 406 (unsigned long)data->bytes_alloc / data->hit, 407 407 (unsigned long long)data->bytes_req,