Commit e5c34a57 authored by Ben Collins's avatar Ben Collins Committed by Linus Torvalds

[PATCH] Fix typo in x86_64 __build_write_lock_const assembly

Based on __build_read_lock_const, this looked like a bug.

[ Indeed. Maybe nobody uses this version? Worth fixing up anyway ]
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent c660439b
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
::"a" (rw) : "memory") ::"a" (rw) : "memory")
#define __build_write_lock_const(rw, helper) \ #define __build_write_lock_const(rw, helper) \
asm volatile(LOCK "subl $" RW_LOCK_BIAS_STR ",(%0)\n\t" \ asm volatile(LOCK "subl $" RW_LOCK_BIAS_STR ",%0\n\t" \
"jnz 2f\n" \ "jnz 2f\n" \
"1:\n" \ "1:\n" \
LOCK_SECTION_START("") \ LOCK_SECTION_START("") \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment