patch-2.4.20 linux-2.4.20/include/asm-s390x/spinlock.h
Next file: linux-2.4.20/include/asm-s390x/system.h
Previous file: linux-2.4.20/include/asm-s390x/smp.h
Back to the patch index
Back to the overall index
- Lines: 90
- Date:
Thu Nov 28 15:53:15 2002
- Orig file:
linux-2.4.19/include/asm-s390x/spinlock.h
- Orig date:
Fri Aug 2 17:39:45 2002
diff -urN linux-2.4.19/include/asm-s390x/spinlock.h linux-2.4.20/include/asm-s390x/spinlock.h
@@ -12,6 +12,20 @@
#define __ASM_SPINLOCK_H
/*
+ * Grmph, take care of %&#! user space programs that include
+ * asm/spinlock.h. The diagnose is only available in kernel
+ * context.
+ */
+#ifdef __KERNEL__
+#include <asm/lowcore.h>
+#define __DIAG44_INSN "ex"
+#define __DIAG44_OPERAND __LC_DIAG44_OPCODE
+#else
+#define __DIAG44_INSN "#"
+#define __DIAG44_OPERAND 0
+#endif
+
+/*
* Simple spin lock operations. There are two variants, one clears IRQ's
* on the local processor, one does not.
*
@@ -31,12 +45,13 @@
{
unsigned long reg1, reg2;
__asm__ __volatile(" bras %1,1f\n"
- "0: # diag 0,0,68\n"
+ "0: " __DIAG44_INSN " 0,%3\n"
"1: slr %0,%0\n"
" cs %0,%1,0(%2)\n"
" jl 0b\n"
: "=&d" (reg1), "=&d" (reg2)
- : "a" (&lp->lock) : "cc", "memory" );
+ : "a" (&lp->lock), "i" (__DIAG44_OPERAND)
+ : "cc", "memory" );
}
extern inline int spin_trylock(spinlock_t *lp)
@@ -79,40 +94,44 @@
#define read_lock(rw) \
asm volatile(" lg 2,0(%0)\n" \
" j 1f\n" \
- "0: # diag 0,0,68\n" \
+ "0: " __DIAG44_INSN " 0,%1\n" \
"1: nihh 2,0x7fff\n" /* clear high (=write) bit */ \
" la 3,1(2)\n" /* one more reader */ \
" csg 2,3,0(%0)\n" /* try to write new value */ \
" jl 0b" \
- : : "a" (&(rw)->lock) : "2", "3", "cc", "memory" )
+ : : "a" (&(rw)->lock), "i" (__DIAG44_OPERAND) \
+ : "2", "3", "cc", "memory" )
#define read_unlock(rw) \
asm volatile(" lg 2,0(%0)\n" \
" j 1f\n" \
- "0: # diag 0,0,68\n" \
+ "0: " __DIAG44_INSN " 0,%1\n" \
"1: lgr 3,2\n" \
" bctgr 3,0\n" /* one less reader */ \
" csg 2,3,0(%0)\n" \
" jl 0b" \
- : : "a" (&(rw)->lock) : "2", "3", "cc", "memory" )
+ : : "a" (&(rw)->lock), "i" (__DIAG44_OPERAND) \
+ : "2", "3", "cc", "memory" )
#define write_lock(rw) \
asm volatile(" llihh 3,0x8000\n" /* new lock value = 0x80...0 */ \
" j 1f\n" \
- "0: # diag 0,0,68\n" \
+ "0: " __DIAG44_INSN " 0,%1\n" \
"1: slgr 2,2\n" /* old lock value must be 0 */ \
" csg 2,3,0(%0)\n" \
" jl 0b" \
- : : "a" (&(rw)->lock) : "2", "3", "cc", "memory" )
+ : : "a" (&(rw)->lock), "i" (__DIAG44_OPERAND) \
+ : "2", "3", "cc", "memory" )
#define write_unlock(rw) \
asm volatile(" slgr 3,3\n" /* new lock value = 0 */ \
" j 1f\n" \
- "0: # diag 0,0,68\n" \
+ "0: " __DIAG44_INSN " 0,%1\n" \
"1: llihh 2,0x8000\n" /* old lock value must be 0x8..0 */\
" csg 2,3,0(%0)\n" \
" jl 0b" \
- : : "a" (&(rw)->lock) : "2", "3", "cc", "memory" )
+ : : "a" (&(rw)->lock), "i" (__DIAG44_OPERAND) \
+ : "2", "3", "cc", "memory" )
#endif /* __ASM_SPINLOCK_H */
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)