Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 64109
b: refs/heads/master
c: 6cba986
h: refs/heads/master
i:
  64107: dd2a143
v: v3
  • Loading branch information
Andreas Schwab authored and Tony Luck committed Aug 13, 2007
1 parent c710969 commit 62bc25e
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: 71416bea5afa9e5a6c76c1509ab69c46c857a2bb
refs/heads/master: 6cba986298105a87a09d65baa2658fb5111459c6
4 changes: 2 additions & 2 deletions trunk/include/asm-ia64/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ia64_atomic64_add (__s64 i, atomic64_t *v)

do {
CMPXCHG_BUGCHECK(v);
old = atomic_read(v);
old = atomic64_read(v);
new = old + i;
} while (ia64_cmpxchg(acq, v, old, new, sizeof(atomic64_t)) != old);
return new;
Expand Down Expand Up @@ -83,7 +83,7 @@ ia64_atomic64_sub (__s64 i, atomic64_t *v)

do {
CMPXCHG_BUGCHECK(v);
old = atomic_read(v);
old = atomic64_read(v);
new = old - i;
} while (ia64_cmpxchg(acq, v, old, new, sizeof(atomic64_t)) != old);
return new;
Expand Down

0 comments on commit 62bc25e

Please sign in to comment.