patch-2.4.18 linux/include/asm-i386/semaphore.h
Next file: linux/include/asm-i386/softirq.h
Previous file: linux/include/asm-i386/rwsem.h
Back to the patch index
Back to the overall index
- Lines: 72
- Date:
Thu Jan 10 20:08:20 2002
- Orig file:
linux.orig/include/asm-i386/semaphore.h
- Orig date:
Mon Feb 18 20:18:40 2002
diff -Naur -X /home/marcelo/lib/dontdiff linux.orig/include/asm-i386/semaphore.h linux/include/asm-i386/semaphore.h
@@ -40,6 +40,7 @@
#include <asm/atomic.h>
#include <linux/wait.h>
#include <linux/rwsem.h>
+#include <linux/stringify.h>
struct semaphore {
atomic_t count;
@@ -122,10 +123,13 @@
LOCK "decl %0\n\t" /* --sem->count */
"js 2f\n"
"1:\n"
- ".section .text.lock,\"ax\"\n"
+ ".subsection 1\n"
+ ".ifndef _text_lock_" __stringify(KBUILD_BASENAME) "\n"
+ "_text_lock_" __stringify(KBUILD_BASENAME) ":\n"
+ ".endif\n"
"2:\tcall __down_failed\n\t"
"jmp 1b\n"
- ".previous"
+ ".subsection 0\n"
:"=m" (sem->count)
:"c" (sem)
:"memory");
@@ -149,10 +153,13 @@
"js 2f\n\t"
"xorl %0,%0\n"
"1:\n"
- ".section .text.lock,\"ax\"\n"
+ ".subsection 1\n"
+ ".ifndef _text_lock_" __stringify(KBUILD_BASENAME) "\n"
+ "_text_lock_" __stringify(KBUILD_BASENAME) ":\n"
+ ".endif\n"
"2:\tcall __down_failed_interruptible\n\t"
"jmp 1b\n"
- ".previous"
+ ".subsection 0\n"
:"=a" (result), "=m" (sem->count)
:"c" (sem)
:"memory");
@@ -177,10 +184,13 @@
"js 2f\n\t"
"xorl %0,%0\n"
"1:\n"
- ".section .text.lock,\"ax\"\n"
+ ".subsection 1\n"
+ ".ifndef _text_lock_" __stringify(KBUILD_BASENAME) "\n"
+ "_text_lock_" __stringify(KBUILD_BASENAME) ":\n"
+ ".endif\n"
"2:\tcall __down_failed_trylock\n\t"
"jmp 1b\n"
- ".previous"
+ ".subsection 0\n"
:"=a" (result), "=m" (sem->count)
:"c" (sem)
:"memory");
@@ -203,10 +213,13 @@
LOCK "incl %0\n\t" /* ++sem->count */
"jle 2f\n"
"1:\n"
- ".section .text.lock,\"ax\"\n"
+ ".subsection 1\n"
+ ".ifndef _text_lock_" __stringify(KBUILD_BASENAME) "\n"
+ "_text_lock_" __stringify(KBUILD_BASENAME) ":\n"
+ ".endif\n"
"2:\tcall __up_wakeup\n\t"
"jmp 1b\n"
- ".previous"
+ ".subsection 0\n"
:"=m" (sem->count)
:"c" (sem)
:"memory");
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)