From: Heiko Carstens Date: Tue, 27 May 2014 07:40:26 +0000 (+0200) Subject: s390: require mvcos facility for z10 and newer machines X-Git-Tag: v5.15~17469^2~36^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0c91f98e28d2d123037ff59366ab7e1bca3e1276;p=platform%2Fkernel%2Flinux-starfive.git s390: require mvcos facility for z10 and newer machines With inlined uaccess functions we always need the mvcos facility. Checking at each inline place if mvcos is available would make the inlining of get_user/put_user pointless. Signed-off-by: Heiko Carstens Signed-off-by: Martin Schwidefsky --- diff --git a/arch/s390/kernel/head.S b/arch/s390/kernel/head.S index 429afcc..37579ad 100644 --- a/arch/s390/kernel/head.S +++ b/arch/s390/kernel/head.S @@ -437,11 +437,11 @@ ENTRY(startup_kdump) #if defined(CONFIG_64BIT) #if defined(CONFIG_MARCH_ZEC12) - .long 3, 0xc100efe3, 0xf46ce800, 0x00400000 + .long 3, 0xc100efeb, 0xf46ce800, 0x00400000 #elif defined(CONFIG_MARCH_Z196) - .long 2, 0xc100efe3, 0xf46c0000 + .long 2, 0xc100efeb, 0xf46c0000 #elif defined(CONFIG_MARCH_Z10) - .long 2, 0xc100efe3, 0xf0680000 + .long 2, 0xc100efeb, 0xf0680000 #elif defined(CONFIG_MARCH_Z9_109) .long 1, 0xc100efc3 #elif defined(CONFIG_MARCH_Z990)