Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 221876
b: refs/heads/master
c: d33aadb
h: refs/heads/master
v: v3
  • Loading branch information
Will Deacon authored and Russell King committed Nov 7, 2010
1 parent d06c907 commit 156f4f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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: 261ca205817deb3d3dfd0be218cc0154be8e6472
refs/heads/master: d33aadbf8e9ba0b844c2a4a03723969c913ab03a
2 changes: 1 addition & 1 deletion trunk/arch/arm/kernel/stacktrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ int notrace unwind_frame(struct stackframe *frame)

/* only go to a higher address on the stack */
low = frame->sp;
high = ALIGN(low, THREAD_SIZE) + THREAD_SIZE;
high = ALIGN(low, THREAD_SIZE);

/* check current frame pointer is within bounds */
if (fp < (low + 12) || fp + 4 >= high)
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/kernel/unwind.c
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ int unwind_frame(struct stackframe *frame)

/* only go to a higher address on the stack */
low = frame->sp;
high = ALIGN(low, THREAD_SIZE) + THREAD_SIZE;
high = ALIGN(low, THREAD_SIZE);

pr_debug("%s(pc = %08lx lr = %08lx sp = %08lx)\n", __func__,
frame->pc, frame->lr, frame->sp);
Expand Down

0 comments on commit 156f4f5

Please sign in to comment.