Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 101136
b: refs/heads/master
c: a5a242d
h: refs/heads/master
v: v3
  • Loading branch information
Vegard Nossum authored and Ingo Molnar committed Jun 13, 2008
1 parent 0f6cada commit 51042ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 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: 886dd58258e6ddebe20e7aebef7b167a24bad7ee
refs/heads/master: a5a242dceed5d1c74fe46088762a9e4312c2d000
9 changes: 3 additions & 6 deletions trunk/kernel/stacktrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,14 @@

void print_stack_trace(struct stack_trace *trace, int spaces)
{
int i, j;
int i;

if (WARN_ON(!trace->entries))
return;

for (i = 0; i < trace->nr_entries; i++) {
unsigned long ip = trace->entries[i];

for (j = 0; j < spaces + 1; j++)
printk(" ");
print_ip_sym(ip);
printk("%*c", 1 + spaces, ' ');
print_ip_sym(trace->entries[i]);
}
}

0 comments on commit 51042ba

Please sign in to comment.