Commit baad2d3e authored by Masami Hiramatsu's avatar Masami Hiramatsu Committed by Steven Rostedt

perf probe: Rename DIE_FIND_CB_FOUND to DIE_FIND_CB_END

Since die_find/walk* callbacks use DIE_FIND_CB_FOUND for
both of failed and found cases, it should be "END"
instead "FOUND" for avoiding confusion.
Signed-off-by: default avatarMasami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Reported-by: default avatarArnaldo Carvalho de Melo <acme@ghostprotocols.net>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Ingo Molnar <mingo@elte.hu>
Link: http://lkml.kernel.org/r/20110627072709.6528.45706.stgit@fedora15Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent 7f6878a3
...@@ -435,7 +435,7 @@ static int die_get_data_member_location(Dwarf_Die *mb_die, Dwarf_Word *offs) ...@@ -435,7 +435,7 @@ static int die_get_data_member_location(Dwarf_Die *mb_die, Dwarf_Word *offs)
/* Return values for die_find callbacks */ /* Return values for die_find callbacks */
enum { enum {
DIE_FIND_CB_FOUND = 0, /* End of Search */ DIE_FIND_CB_END = 0, /* End of Search */
DIE_FIND_CB_CHILD = 1, /* Search only children */ DIE_FIND_CB_CHILD = 1, /* Search only children */
DIE_FIND_CB_SIBLING = 2, /* Search only siblings */ DIE_FIND_CB_SIBLING = 2, /* Search only siblings */
DIE_FIND_CB_CONTINUE = 3, /* Search children and siblings */ DIE_FIND_CB_CONTINUE = 3, /* Search children and siblings */
...@@ -455,7 +455,7 @@ static Dwarf_Die *die_find_child(Dwarf_Die *rt_die, ...@@ -455,7 +455,7 @@ static Dwarf_Die *die_find_child(Dwarf_Die *rt_die,
do { do {
ret = callback(die_mem, data); ret = callback(die_mem, data);
if (ret == DIE_FIND_CB_FOUND) if (ret == DIE_FIND_CB_END)
return die_mem; return die_mem;
if ((ret & DIE_FIND_CB_CHILD) && if ((ret & DIE_FIND_CB_CHILD) &&
...@@ -507,7 +507,7 @@ static int __die_find_inline_cb(Dwarf_Die *die_mem, void *data) ...@@ -507,7 +507,7 @@ static int __die_find_inline_cb(Dwarf_Die *die_mem, void *data)
if (dwarf_tag(die_mem) == DW_TAG_inlined_subroutine && if (dwarf_tag(die_mem) == DW_TAG_inlined_subroutine &&
dwarf_haspc(die_mem, *addr)) dwarf_haspc(die_mem, *addr))
return DIE_FIND_CB_FOUND; return DIE_FIND_CB_END;
return DIE_FIND_CB_CONTINUE; return DIE_FIND_CB_CONTINUE;
} }
...@@ -555,7 +555,7 @@ static int __die_walk_funclines_cb(Dwarf_Die *in_die, void *data) ...@@ -555,7 +555,7 @@ static int __die_walk_funclines_cb(Dwarf_Die *in_die, void *data)
lw->retval = lw->handler(lw->fname, lineno, addr, lw->retval = lw->handler(lw->fname, lineno, addr,
lw->data); lw->data);
if (lw->retval != 0) if (lw->retval != 0)
return DIE_FIND_CB_FOUND; return DIE_FIND_CB_END;
} }
} }
return DIE_FIND_CB_SIBLING; return DIE_FIND_CB_SIBLING;
...@@ -691,7 +691,7 @@ static int __die_find_variable_cb(Dwarf_Die *die_mem, void *data) ...@@ -691,7 +691,7 @@ static int __die_find_variable_cb(Dwarf_Die *die_mem, void *data)
if ((tag == DW_TAG_formal_parameter || if ((tag == DW_TAG_formal_parameter ||
tag == DW_TAG_variable) && tag == DW_TAG_variable) &&
die_compare_name(die_mem, fvp->name)) die_compare_name(die_mem, fvp->name))
return DIE_FIND_CB_FOUND; return DIE_FIND_CB_END;
if (dwarf_haspc(die_mem, fvp->addr)) if (dwarf_haspc(die_mem, fvp->addr))
return DIE_FIND_CB_CONTINUE; return DIE_FIND_CB_CONTINUE;
...@@ -715,7 +715,7 @@ static int __die_find_member_cb(Dwarf_Die *die_mem, void *data) ...@@ -715,7 +715,7 @@ static int __die_find_member_cb(Dwarf_Die *die_mem, void *data)
if ((dwarf_tag(die_mem) == DW_TAG_member) && if ((dwarf_tag(die_mem) == DW_TAG_member) &&
die_compare_name(die_mem, name)) die_compare_name(die_mem, name))
return DIE_FIND_CB_FOUND; return DIE_FIND_CB_END;
return DIE_FIND_CB_SIBLING; return DIE_FIND_CB_SIBLING;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment