From: Jan Beulich Date: Mon, 23 Sep 2019 12:40:08 +0000 (+0200) Subject: x86: properly gate clearing of PKU feature X-Git-Tag: archive/raspbian/4.11.3+24-g14b62ab3e5-1+rpi1^2~55^2~105 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ff5ddf0e425df6cd09c91248297d10bc44c1cc17;p=xen.git x86: properly gate clearing of PKU feature setup_clear_cpu_cap() is __init and hence may not be called post-boot. Note that opt_pku nevertheless is not getting __initdata added - see e.g. commit 43fa95ae6a ("mm: make opt_bootscrub non-init"). Signed-off-by: Jan Beulich Acked-by: Andrew Cooper master commit: 41c7700a00011ad08be3c9d71126b67e08e58ac3 master date: 2019-08-29 15:10:07 +0200 --- diff --git a/xen/arch/x86/cpu/common.c b/xen/arch/x86/cpu/common.c index e438191c36..b40c45d097 100644 --- a/xen/arch/x86/cpu/common.c +++ b/xen/arch/x86/cpu/common.c @@ -472,7 +472,7 @@ void identify_cpu(struct cpuinfo_x86 *c) this_cpu->c_init(c); - if ( !opt_pku ) + if (c == &boot_cpu_data && !opt_pku) setup_clear_cpu_cap(X86_FEATURE_PKU); /*