提交 00463c16 编写于 作者: A Andi Kleen 提交者: Linus Torvalds

[PATCH] i386: Use early clobbers for semaphores now

The new code does clobber the result early, so make sure to tell
gcc to not put it into the same register as a input argument
Signed-off-by: NAndi Kleen <ak@suse.de>
Cc: Andrew Morton <akpm@osdl.org>
Acked-by: NKyle McMartin <kyle@parisc-linux.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 cdb8355a
......@@ -126,7 +126,7 @@ static inline int down_interruptible(struct semaphore * sem)
"lea %1,%%eax\n\t"
"call __down_failed_interruptible\n"
"2:"
:"=a" (result), "+m" (sem->count)
:"=&a" (result), "+m" (sem->count)
:
:"memory");
return result;
......@@ -148,7 +148,7 @@ static inline int down_trylock(struct semaphore * sem)
"lea %1,%%eax\n\t"
"call __down_failed_trylock\n\t"
"2:\n"
:"=a" (result), "+m" (sem->count)
:"=&a" (result), "+m" (sem->count)
:
:"memory");
return result;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册