Lines Matching refs:next_root
125 struct kvm_mmu_page *next_root;
136 next_root = list_next_or_null_rcu(&kvm->arch.tdp_mmu_roots,
140 next_root = list_first_or_null_rcu(&kvm->arch.tdp_mmu_roots,
141 typeof(*next_root), link);
143 while (next_root) {
144 if (tdp_mmu_root_match(next_root, types) &&
145 kvm_tdp_mmu_get_root(next_root))
148 next_root = list_next_or_null_rcu(&kvm->arch.tdp_mmu_roots,
149 &next_root->link, typeof(*next_root), link);
157 return next_root;