[RFC PATCH 1/2] KVM: arm64: Introduce S2 walker SKIP return options
Oliver Upton
oupton at kernel.org
Mon May 18 00:22:47 PDT 2026
Hi Leo,
Thanks for having a look at this.
On Fri, May 15, 2026 at 08:59:02PM +0100, Leonardo Bras wrote:
> Introduce S2 walker return values:
> - SKIP_CHILDREN: skip walking the children of the current node
> - SKIP_SIBLINGS: skip waling the siblings of the current node
>
> Also, modify __kvm_pgtable_visit() to fulfil the hing on above return
> values. Current walkers should not be impacted
I'd rather see something based around new walk flags than introducing an
entirely new mechanic around return values.
e.g. you could split the LEAF flag into separate flags for blocks v.
pages:
KVM_PGTABLE_WALK_PAGE,
KVM_PGTABLE_WALK_BLOCK,
KVM_PGTABLE_WALK_LEAF = KVM_PGTABLE_WALK_PAGE |
KVM_PGTABLE_WALK_BLOCK,
and then let __kvm_pgtable_visit() decide how to steer the walk. You may
need some special handling to get the address arithmetic right when
skipping over a table of page descriptors.
Thanks,
Oliver
More information about the linux-arm-kernel
mailing list