Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 100634
b: refs/heads/master
c: 9caee61
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Gleixner committed May 23, 2008
1 parent 9664ed1 commit cd51753
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: ada6b835067dc022f11cdae1c313a3710d3d977c
refs/heads/master: 9caee613d3b860ae81b79370eeae9ac967c07536
8 changes: 4 additions & 4 deletions trunk/kernel/trace/trace_sysprof.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ static void timer_notify(struct pt_regs *regs, int cpu)

}

trace_special(tr, data, 0, current->pid, regs->ip);
__trace_special(tr, data, 0, current->pid, regs->ip);

fp = (void __user *)regs->bp;

Expand All @@ -93,18 +93,18 @@ static void timer_notify(struct pt_regs *regs, int cpu)
if ((unsigned long)fp < regs->sp)
break;

trace_special(tr, data, 1, frame.return_address,
__trace_special(tr, data, 1, frame.return_address,
(unsigned long)fp);
fp = frame.next_fp;
}

trace_special(tr, data, 2, current->pid, i);
__trace_special(tr, data, 2, current->pid, i);

/*
* Special trace entry if we overflow the max depth:
*/
if (i == sample_max_depth)
trace_special(tr, data, -1, -1, -1);
__trace_special(tr, data, -1, -1, -1);
}

static enum hrtimer_restart stack_trace_timer_fn(struct hrtimer *hrtimer)
Expand Down

0 comments on commit cd51753

Please sign in to comment.