Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43135
b: refs/heads/master
c: e4b522d
h: refs/heads/master
i:
  43133: cdda9fe
  43131: 2a29a76
  43127: c5fe47f
  43119: bd61d39
  43103: 127339b
  43071: bfe9453
  43007: 23e9d19
v: v3
  • Loading branch information
Duncan Sands authored and Andi Kleen committed Dec 7, 2006
1 parent e74cecb commit 368ef0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: d263b213577a1e8f166b0a7212d85175e36d6c19
refs/heads/master: e4b522d7ef144fb2ad6a4cb23d9cb5ec154be8bc
6 changes: 3 additions & 3 deletions trunk/include/asm-i386/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,9 @@ static __inline__ int atomic_add_return(int i, atomic_t *v)
/* Modern 486+ processor */
__i = i;
__asm__ __volatile__(
LOCK_PREFIX "xaddl %0, %1;"
:"=r"(i)
:"m"(v->counter), "0"(i));
LOCK_PREFIX "xaddl %0, %1"
:"+r" (i), "+m" (v->counter)
: : "memory");
return i + __i;

#ifdef CONFIG_M386
Expand Down

0 comments on commit 368ef0d

Please sign in to comment.