Lines Matching refs:writable

1775 				      gfn_t gfn, bool *writable)  in gfn_to_hva_memslot_prot()  argument
1779 if (!kvm_is_error_hva(hva) && writable) in gfn_to_hva_memslot_prot()
1780 *writable = !memslot_is_readonly(slot); in gfn_to_hva_memslot_prot()
1785 unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable) in gfn_to_hva_prot() argument
1789 return gfn_to_hva_memslot_prot(slot, gfn, writable); in gfn_to_hva_prot()
1792 unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable) in kvm_vcpu_gfn_to_hva_prot() argument
1796 return gfn_to_hva_memslot_prot(slot, gfn, writable); in kvm_vcpu_gfn_to_hva_prot()
1813 bool *writable, kvm_pfn_t *pfn) in hva_to_pfn_fast() argument
1822 if (!(write_fault || writable)) in hva_to_pfn_fast()
1828 if (writable) in hva_to_pfn_fast()
1829 *writable = true; in hva_to_pfn_fast()
1841 bool *writable, kvm_pfn_t *pfn) in hva_to_pfn_slow() argument
1849 if (writable) in hva_to_pfn_slow()
1850 *writable = write_fault; in hva_to_pfn_slow()
1862 if (unlikely(!write_fault) && writable) { in hva_to_pfn_slow()
1866 *writable = true; in hva_to_pfn_slow()
1888 bool write_fault, bool *writable, in hva_to_pfn_remapped() argument
1915 if (writable) in hva_to_pfn_remapped()
1916 *writable = true; in hva_to_pfn_remapped()
1950 bool write_fault, bool *writable) in hva_to_pfn() argument
1959 if (hva_to_pfn_fast(addr, write_fault, writable, &pfn)) in hva_to_pfn()
1965 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn); in hva_to_pfn()
1982 r = hva_to_pfn_remapped(vma, addr, async, write_fault, writable, &pfn); in hva_to_pfn()
1999 bool *writable) in __gfn_to_pfn_memslot() argument
2004 if (writable) in __gfn_to_pfn_memslot()
2005 *writable = false; in __gfn_to_pfn_memslot()
2010 if (writable) in __gfn_to_pfn_memslot()
2011 *writable = false; in __gfn_to_pfn_memslot()
2016 if (writable && memslot_is_readonly(slot)) { in __gfn_to_pfn_memslot()
2017 *writable = false; in __gfn_to_pfn_memslot()
2018 writable = NULL; in __gfn_to_pfn_memslot()
2022 writable); in __gfn_to_pfn_memslot()
2027 bool *writable) in gfn_to_pfn_prot() argument
2030 write_fault, writable); in gfn_to_pfn_prot()