Re: [PATCH 11/14] KVM: arm64: Expose kvm_pte_valid() helper

2021-07-21 Thread Fuad Tabba
Hi Quentin, On Mon, Jul 19, 2021 at 11:48 AM Quentin Perret wrote: > > The KVM pgtable API exposes the kvm_pgtable_walk() function to allow > the definition of walkers outside of pgtable.c. However, it is not easy > to implement any of those walkers without some of the low-level helpers, > such

[PATCH 11/14] KVM: arm64: Expose kvm_pte_valid() helper

2021-07-19 Thread Quentin Perret
The KVM pgtable API exposes the kvm_pgtable_walk() function to allow the definition of walkers outside of pgtable.c. However, it is not easy to implement any of those walkers without some of the low-level helpers, such as kvm_pte_valid(). Make it static inline, and move it to the header file to all