diff options
author | Radim Krčmář <rkrcmar@redhat.com> | 2016-04-08 15:17:27 +0300 |
---|---|---|
committer | Radim Krčmář <rkrcmar@redhat.com> | 2016-04-08 15:17:27 +0300 |
commit | 4a6cd3ba6fc4993f1805613098d7b032a7aa937b (patch) | |
tree | b3f1da0eed3d73f677651feb53c3d1c87555765c /arch/arm64/include/asm/kvm_host.h | |
parent | 3d8e15dd6de644736916c8ba012c1cc6b356d4ba (diff) | |
parent | 06a71a24bae57a07afee9cda6b00495347d8a448 (diff) | |
download | linux-4a6cd3ba6fc4993f1805613098d7b032a7aa937b.tar.xz |
Merge tag 'kvm-arm-for-4.6-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm
KVM/ARM Fixes for v4.6-rc4
Addresses:
- Wrong indentation in the PMU code from the merge window
- A long-time bug occuring with running ntpd on the host, candidate for stable
- Properly handle (and warn about) the unsupported configuration of running on
systems with less than 40 bits of PA space
- More fixes to the PM and hotplug notifier stuff from the merge window
Diffstat (limited to 'arch/arm64/include/asm/kvm_host.h')
-rw-r--r-- | arch/arm64/include/asm/kvm_host.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/arm64/include/asm/kvm_host.h b/arch/arm64/include/asm/kvm_host.h index b7e82a795ac9..f5c6bd2541ef 100644 --- a/arch/arm64/include/asm/kvm_host.h +++ b/arch/arm64/include/asm/kvm_host.h @@ -369,11 +369,12 @@ int kvm_arm_vcpu_arch_get_attr(struct kvm_vcpu *vcpu, int kvm_arm_vcpu_arch_has_attr(struct kvm_vcpu *vcpu, struct kvm_device_attr *attr); -/* #define kvm_call_hyp(f, ...) __kvm_call_hyp(kvm_ksym_ref(f), ##__VA_ARGS__) */ - static inline void __cpu_init_stage2(void) { - kvm_call_hyp(__init_stage2_translation); + u32 parange = kvm_call_hyp(__init_stage2_translation); + + WARN_ONCE(parange < 40, + "PARange is %d bits, unsupported configuration!", parange); } #endif /* __ARM64_KVM_HOST_H__ */ |