diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2010-04-13 14:12:17 +0200 | 
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2010-04-13 14:12:17 +0200 | 
| commit | 7c7145f6acc68100dbdc5d3c5c64fe3af1c99c89 (patch) | |
| tree | 5e93e3eb4787229032f1df222fa490112f4b0c32 /arch/s390/include/asm/system.h | |
| parent | 92d6b71ab906be706f3679353b30a8d2c3831144 (diff) | |
| parent | 0d0fb0f9c5fddef4a10242fe3337f00f528a3099 (diff) | |
| download | olio-linux-3.10-7c7145f6acc68100dbdc5d3c5c64fe3af1c99c89.tar.xz olio-linux-3.10-7c7145f6acc68100dbdc5d3c5c64fe3af1c99c89.zip  | |
Merge branch 'linus' into irq/core
Reason: Get the upstream IRQF_DISABLED related changes.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/s390/include/asm/system.h')
| -rw-r--r-- | arch/s390/include/asm/system.h | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/s390/include/asm/system.h b/arch/s390/include/asm/system.h index 67ee6c3c6bb..1741c1556a4 100644 --- a/arch/s390/include/asm/system.h +++ b/arch/s390/include/asm/system.h @@ -110,6 +110,7 @@ extern void pfault_fini(void);  #endif /* CONFIG_PFAULT */  extern void cmma_init(void); +extern int memcpy_real(void *, void *, size_t);  #define finish_arch_switch(prev) do {					     \  	set_fs(current->thread.mm_segment);				     \ @@ -218,8 +219,8 @@ __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size)  			"	l	%0,%2\n"  			"0:	nr	%0,%5\n"  			"	lr	%1,%0\n" -			"	or	%0,%2\n" -			"	or	%1,%3\n" +			"	or	%0,%3\n" +			"	or	%1,%4\n"  			"	cs	%0,%1,%2\n"  			"	jnl	1f\n"  			"	xr	%1,%0\n" @@ -239,8 +240,8 @@ __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size)  			"	l	%0,%2\n"  			"0:	nr	%0,%5\n"  			"	lr	%1,%0\n" -			"	or	%0,%2\n" -			"	or	%1,%3\n" +			"	or	%0,%3\n" +			"	or	%1,%4\n"  			"	cs	%0,%1,%2\n"  			"	jnl	1f\n"  			"	xr	%1,%0\n"  |