From: Marc Zyngier Date: Wed, 19 Dec 2018 08:31:54 +0000 (+0000) Subject: arm: KVM: Add S2_PMD_{MASK,SIZE} constants X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=8c33df1afd86c611da8473dc6fc5f3af3dabe984;p=openwrt%2Fstaging%2Fblogic.git arm: KVM: Add S2_PMD_{MASK,SIZE} constants They were missing, and it turns out that we do need them now. Acked-by: Christoffer Dall Signed-off-by: Marc Zyngier --- diff --git a/arch/arm/include/asm/stage2_pgtable.h b/arch/arm/include/asm/stage2_pgtable.h index f9017167a8d1..c4b1d4fb1797 100644 --- a/arch/arm/include/asm/stage2_pgtable.h +++ b/arch/arm/include/asm/stage2_pgtable.h @@ -73,4 +73,7 @@ static inline bool kvm_stage2_has_pud(struct kvm *kvm) return false; } +#define S2_PMD_MASK PMD_MASK +#define S2_PMD_SIZE PMD_SIZE + #endif /* __ARM_S2_PGTABLE_H_ */