Home
last modified time | relevance | path

Searched refs:_root (Results 1 – 3 of 3) sorted by relevance

/linux/arch/x86/kvm/mmu/
H A Dtdp_mmu.c167 #define __for_each_tdp_mmu_root_yield_safe(_kvm, _root, _as_id, _types) \ argument
168 for (_root = tdp_mmu_next_root(_kvm, NULL, _types); \
169 ({ lockdep_assert_held(&(_kvm)->mmu_lock); }), _root; \
170 _root = tdp_mmu_next_root(_kvm, _root, _types)) \
171 if (_as_id >= 0 && kvm_mmu_page_as_id(_root) != _as_id) { \
174 #define for_each_valid_tdp_mmu_root_yield_safe(_kvm, _root, _as_id) \ argument
175 __for_each_tdp_mmu_root_yield_safe(_kvm, _root, _as_id, KVM_VALID_ROOTS)
177 #define for_each_tdp_mmu_root_yield_safe(_kvm, _root) \ argument
178 for (_root = tdp_mmu_next_root(_kvm, NULL, KVM_ALL_ROOTS); \
179 ({ lockdep_assert_held(&(_kvm)->mmu_lock); }), _root; \
[all …]
H A Dmmu.c163 #define for_each_shadow_entry_using_root(_vcpu, _root, _addr, _walker) \ argument
165 (_root), (_addr)); \
/linux/kernel/
H A Dresource.c79 #define for_each_resource(_root, _p, _skip_children) \ argument
80 for (typeof(_root) __root = (_root), __p = _p = __root->child; \