Skip to content

Commit

Permalink
perf probe: Clean up redundant tests in show_line_range()
Browse files Browse the repository at this point in the history
It also removes some superflous parentheses.

Cc: Masami Hiramatsu <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: Franck Bui-Huu <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
  • Loading branch information
fbuihuu authored and acmel committed Dec 21, 2010
1 parent befe341 commit 44b81e9
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions tools/perf/util/probe-event.c
Original file line number Diff line number Diff line change
Expand Up @@ -373,26 +373,30 @@ int show_line_range(struct line_range *lr, const char *module)
return -errno;
}
/* Skip to starting line number */
while (l < lr->start && ret >= 0)
while (l < lr->start) {
ret = show_one_line(fp, l++, true, false);
if (ret < 0)
goto end;
if (ret < 0)
goto end;
}

list_for_each_entry(ln, &lr->line_list, list) {
while (ln->line > l && ret >= 0)
ret = show_one_line(fp, (l++) - lr->offset,
false, false);
if (ret >= 0)
ret = show_one_line(fp, (l++) - lr->offset,
false, true);
for (; ln->line > l; l++) {
ret = show_one_line(fp, l - lr->offset, false, false);
if (ret < 0)
goto end;
}
ret = show_one_line(fp, l++ - lr->offset, false, true);
if (ret < 0)
goto end;
}

if (lr->end == INT_MAX)
lr->end = l + NR_ADDITIONAL_LINES;
while (l <= lr->end && !feof(fp) && ret >= 0)
ret = show_one_line(fp, (l++) - lr->offset, false, false);
while (l <= lr->end && !feof(fp)) {
ret = show_one_line(fp, l++ - lr->offset, false, false);
if (ret < 0)
break;
}
end:
fclose(fp);
return ret;
Expand Down

0 comments on commit 44b81e9

Please sign in to comment.