From: Heiko Carstens Date: Wed, 2 Mar 2016 09:14:08 +0000 (+0100) Subject: s390/percpu: remove this_cpu_cmpxchg_double_4 X-Git-Tag: v4.14-rc1~3657^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f369b98ee30df4b4eaf57e2aab081529c2fad6d9;p=platform%2Fkernel%2Flinux-rpi.git s390/percpu: remove this_cpu_cmpxchg_double_4 git commit 26f15caaf993 ("s390/cmpxchg: simplify cmpxchg_double") removed support for cmpxchg_double for two consecutive four byte values, for which it would generate a cds instruction. However I forgot to remove the corresponding define in our percpu header file, which means that this_cpu_cmpxchg_double would now incorrectly generate a cdsg instruction if being used on a double four byte location. Therefore remove the percpu define as well. There is currently no user and therefore no bug fixed with this. Obviously any such user could and should simply use cmpxchg. Signed-off-by: Heiko Carstens Signed-off-by: Martin Schwidefsky --- diff --git a/arch/s390/include/asm/percpu.h b/arch/s390/include/asm/percpu.h index 6d6556ca..90240df 100644 --- a/arch/s390/include/asm/percpu.h +++ b/arch/s390/include/asm/percpu.h @@ -178,7 +178,6 @@ ret__; \ }) -#define this_cpu_cmpxchg_double_4 arch_this_cpu_cmpxchg_double #define this_cpu_cmpxchg_double_8 arch_this_cpu_cmpxchg_double #include