Home
last modified time | relevance | path

Searched refs:as_id (Results 1 – 5 of 5) sorted by relevance

/arch/x86/kvm/mmu/
Dtdp_mmu.c237 static void handle_changed_spte(struct kvm *kvm, int as_id, gfn_t gfn,
252 static void handle_changed_spte_dirty_log(struct kvm *kvm, int as_id, gfn_t gfn, in handle_changed_spte_dirty_log() argument
265 slot = __gfn_to_memslot(__kvm_memslots(kvm, as_id), gfn); in handle_changed_spte_dirty_log()
412 static void __handle_changed_spte(struct kvm *kvm, int as_id, gfn_t gfn, in __handle_changed_spte() argument
440 as_id, gfn, old_spte, new_spte, level); in __handle_changed_spte()
452 trace_kvm_tdp_mmu_spte_changed(as_id, gfn, level, old_spte, new_spte); in __handle_changed_spte()
475 as_id, gfn, old_spte, new_spte, level); in __handle_changed_spte()
495 static void handle_changed_spte(struct kvm *kvm, int as_id, gfn_t gfn, in handle_changed_spte() argument
499 __handle_changed_spte(kvm, as_id, gfn, old_spte, new_spte, level, in handle_changed_spte()
502 handle_changed_spte_dirty_log(kvm, as_id, gfn, old_spte, in handle_changed_spte()
[all …]
Dtdp_mmu.h19 bool __kvm_tdp_mmu_zap_gfn_range(struct kvm *kvm, int as_id, gfn_t start,
21 static inline bool kvm_tdp_mmu_zap_gfn_range(struct kvm *kvm, int as_id, in kvm_tdp_mmu_zap_gfn_range() argument
24 return __kvm_tdp_mmu_zap_gfn_range(kvm, as_id, start, end, true, flush); in kvm_tdp_mmu_zap_gfn_range()
Dmmutrace.h392 TP_PROTO(int as_id, gfn_t gfn, int level, u64 old_spte, u64 new_spte),
393 TP_ARGS(as_id, gfn, level, old_spte, new_spte),
402 __field(u8, as_id)
410 __entry->as_id = as_id;
414 __entry->as_id, __entry->gfn, __entry->level,
Dtdp_iter.h40 int as_id; member
Dtdp_iter.c53 iter->as_id = kvm_mmu_page_as_id(sptep_to_sp(root_pt)); in tdp_iter_start()