提交 bdad0db7 编写于 作者: X Xiao Guangrong 提交者: Ingo Molnar

perf_event: Fix compile error

Fix:

 cc1: warnings being treated as errors
 builtin-probe.c: In function 'cmd_probe':
 builtin-probe.c:163: error: unused variable 'fd'
Signed-off-by: NXiao Guangrong <xiaoguangrong@cn.fujitsu.com>
Cc: Masami Hiramatsu <mhiramat@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <4B162089.8000907@cn.fujitsu.com>
[ v2: use NO_LIBDWARF instead of __used ]
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 c19e33aa
......@@ -160,7 +160,10 @@ static const struct option options[] = {
int cmd_probe(int argc, const char **argv, const char *prefix __used)
{
int i, j, fd, ret;
int i, j, ret;
#ifndef NO_LIBDWARF
int fd;
#endif
struct probe_point *pp;
argc = parse_options(argc, argv, options, probe_usage,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册