Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147532
b: refs/heads/master
c: abd54f6
h: refs/heads/master
v: v3
  • Loading branch information
Arnaldo Carvalho de Melo authored and Ingo Molnar committed May 26, 2009
1 parent e13139e commit d2ccea2
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 20 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 59d81029b6804c3d5895d07cad77d7dfddc6b5b2
refs/heads/master: abd54f68629fa73ed4fa040d433196211a9bbed2
44 changes: 25 additions & 19 deletions trunk/Documentation/perf_counter/builtin-report.c
Original file line number Diff line number Diff line change
Expand Up @@ -360,17 +360,9 @@ static int load_kallsyms(void)
char *line = NULL;
size_t n;

if (getline(&line, &n, file) < 0 || !line)
goto out_delete_dso;

unsigned long long previous_start;
char c, previous_symbf[4096];
if (sscanf(line, "%llx %c %s", &previous_start, &c, previous_symbf) != 3)
goto out_delete_line;

while (!feof(file)) {
unsigned long long start;
char symbf[4096];
char c, symbf[4096];

if (getline(&line, &n, file) < 0)
break;
Expand All @@ -379,21 +371,35 @@ static int load_kallsyms(void)
goto out_delete_dso;

if (sscanf(line, "%llx %c %s", &start, &c, symbf) == 3) {
if (start > previous_start) {
struct symbol *sym = symbol__new(previous_start,
start - previous_start,
previous_symbf);
/*
* Well fix up the end later, when we have all sorted.
*/
struct symbol *sym = symbol__new(start, 0xdead, symbf);

if (sym == NULL)
goto out_delete_dso;
if (sym == NULL)
goto out_delete_dso;

dso__insert_symbol(kernel_dso, sym);
previous_start = start;
strcpy(previous_symbf, symbf);
}
dso__insert_symbol(kernel_dso, sym);
}
}

/*
* Now that we have all sorted out, just set the ->end of all
* symbols
*/
struct rb_node *nd, *prevnd = rb_first(&kernel_dso->syms);

if (prevnd == NULL)
goto out_delete_line;

for (nd = rb_next(prevnd); nd; nd = rb_next(nd)) {
struct symbol *prev = rb_entry(prevnd, struct symbol, rb_node),
*curr = rb_entry(nd, struct symbol, rb_node);

prev->end = curr->start - 1;
prevnd = nd;
}

dsos__add(kernel_dso);
free(line);
fclose(file);
Expand Down

0 comments on commit d2ccea2

Please sign in to comment.