s390/uv: fix prot virt host indication compilation
authorJanosch Frank <frankja@linux.ibm.com>
Tue, 23 Mar 2021 10:09:50 +0000 (10:09 +0000)
committerHeiko Carstens <hca@linux.ibm.com>
Wed, 24 Mar 2021 15:06:19 +0000 (16:06 +0100)
prot_virt_host is only available if CONFIG_KVM is enabled. So lets use
a variable initialized to zero and overwrite it when that config
option is set with prot_virt_host.

Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
Fixes: 37564ed834ac ("s390/uv: add prot virt guest/host indication files")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
arch/s390/kernel/uv.c

index 04b6463..cbfbeab 100644 (file)
@@ -420,7 +420,13 @@ static ssize_t uv_is_prot_virt_guest(struct kobject *kobj,
 static ssize_t uv_is_prot_virt_host(struct kobject *kobj,
                                    struct kobj_attribute *attr, char *page)
 {
-       return scnprintf(page, PAGE_SIZE, "%d\n", prot_virt_host);
+       int val = 0;
+
+#if IS_ENABLED(CONFIG_KVM)
+       val = prot_virt_host;
+#endif
+
+       return scnprintf(page, PAGE_SIZE, "%d\n", val);
 }
 
 static struct kobj_attribute uv_prot_virt_guest =