- int root = vcpu->arch.mmu->shadow_root_level;Personal taste: I would've renamed 'root' to 'root_level' (to be
- int leaf;
- int level;
+ int root, leaf, level;
bool reserved = false;
consistent with get_walk()/kvm_tdp_mmu_get_walk()) and 'level' to
e.g. 'l' as it's only being used as an interator ('i' would also do).