Re: [PATCH v4 05/21] KVM: arm64: Expose page-table helpers

2021-08-10 Thread Fuad Tabba
Hi Quentin, On Mon, Aug 9, 2021 at 5:25 PM 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. > Move

[PATCH v4 05/21] KVM: arm64: Expose page-table helpers

2021-08-09 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. Move some of them to the header file to allow re-use from other places.