Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 276671
b: refs/heads/master
c: ddf5a25
h: refs/heads/master
i:
  276669: e8db645
  276667: 994e508
  276663: f31423f
  276655: 587619f
  276639: db1267e
  276607: 53df5b3
v: v3
  • Loading branch information
Uwe Kleine-König authored and Linus Torvalds committed Dec 15, 2011
1 parent 716706f commit 3d04eb3
Show file tree
Hide file tree
Showing 2 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: 42ebfc61cfcb13af3e638db1c497dcbde7abfed8
refs/heads/master: ddf5a25c5fdd4cc276edf451871c38002eec0f95
4 changes: 2 additions & 2 deletions trunk/arch/arm/kernel/unwind.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,12 @@ static const struct unwind_idx *unwind_find_origin(
const struct unwind_idx *start, const struct unwind_idx *stop)
{
pr_debug("%s(%p, %p)\n", __func__, start, stop);
while (start < stop - 1) {
while (start < stop) {
const struct unwind_idx *mid = start + ((stop - start) >> 1);

if (mid->addr_offset >= 0x40000000)
/* negative offset */
start = mid;
start = mid + 1;
else
/* positive offset */
stop = mid;
Expand Down

0 comments on commit 3d04eb3

Please sign in to comment.