Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 112279
b: refs/heads/master
c: 2d4b6c9
h: refs/heads/master
i:
  112277: b218682
  112275: 1b77805
  112271: db6f907
v: v3
  • Loading branch information
Nicolas Pitre authored and Russell King committed Sep 1, 2008
1 parent 81eb495 commit 66587f1
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: d81030a1badb4e4d08358ff2c2bda9b11d5a6559
refs/heads/master: 2d4b6c9aeb94cb9cb5c250f23e81e6d00b461372
4 changes: 2 additions & 2 deletions trunk/arch/arm/kernel/kprobes-decode.c
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ static void __kprobes simulate_ldm1stm1(struct kprobe *p, struct pt_regs *regs)

if (!ubit)
addr -= reg_count;
addr += (!pbit ^ !ubit);
addr += (!pbit == !ubit);

reg_bit_vector = insn & 0xffff;
while (reg_bit_vector) {
Expand All @@ -503,7 +503,7 @@ static void __kprobes simulate_ldm1stm1(struct kprobe *p, struct pt_regs *regs)
if (wbit) {
if (!ubit)
addr -= reg_count;
addr -= (!pbit ^ !ubit);
addr -= (!pbit == !ubit);
regs->uregs[rn] = (long)addr;
}
}
Expand Down

0 comments on commit 66587f1

Please sign in to comment.