Re: [PATCH v1 07/27] KVM: arm64: Provide arm64 KVM API for non-native architectures

From: Christian Borntraeger

Date: Thu Apr 02 2026 - 07:33:32 EST


Am 02.04.26 um 12:08 schrieb Marc Zyngier:
+static inline bool kvm_supports_32bit_el0(void)
+{
+ return false;
+}
+

This looks wrong. The original file still has:

#define kvm_supports_32bit_el0() \
(system_supports_32bit_el0() && \
!static_branch_unlikely(&arm64_mismatched_32bit_el0))
Thanks for spotting.
Yes, we will fix. Seems to be a leftover when sorting patches.

Christian