summaryrefslogtreecommitdiff
path: root/arch/s390/boot/uv.c
diff options
context:
space:
mode:
authorVasily Gorbik <gor@linux.ibm.com>2020-09-11 12:38:21 +0300
committerVasily Gorbik <gor@linux.ibm.com>2020-09-16 15:08:47 +0300
commit1d6671ae46e52e383bc6eea8d33bdd32ae61b323 (patch)
tree1996bcba464031af7c7ed546fbc2ab1e933fe837 /arch/s390/boot/uv.c
parent8f78657c291f9e5ec26a2a9187938b374629d176 (diff)
downloadlinux-1d6671ae46e52e383bc6eea8d33bdd32ae61b323.tar.xz
s390/protvirt: parse prot_virt option in the decompressor
To make early kernel address space layout definition possible parse prot_virt option in the decompressor and pass it to the uncompressed kernel. This enables kasan to take ultravisor secure storage limit into consideration and pre-define vmalloc position correctly. Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'arch/s390/boot/uv.c')
-rw-r--r--arch/s390/boot/uv.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/s390/boot/uv.c b/arch/s390/boot/uv.c
index f887a479cdc7..a15c033f53ca 100644
--- a/arch/s390/boot/uv.c
+++ b/arch/s390/boot/uv.c
@@ -7,6 +7,9 @@
#ifdef CONFIG_PROTECTED_VIRTUALIZATION_GUEST
int __bootdata_preserved(prot_virt_guest);
#endif
+#if IS_ENABLED(CONFIG_KVM)
+int __bootdata_preserved(prot_virt_host);
+#endif
struct uv_info __bootdata_preserved(uv_info);
void uv_query_info(void)