Lines Matching refs:writable

1175 				      gfn_t gfn, bool *writable)  in gfn_to_hva_memslot_prot()  argument
1179 if (!kvm_is_error_hva(hva) && writable) in gfn_to_hva_memslot_prot()
1180 *writable = !memslot_is_readonly(slot); in gfn_to_hva_memslot_prot()
1185 unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable) in gfn_to_hva_prot() argument
1189 return gfn_to_hva_memslot_prot(slot, gfn, writable); in gfn_to_hva_prot()
1217 bool write_fault, bool *writable, pfn_t *pfn) in hva_to_pfn_fast() argument
1230 if (!(write_fault || writable)) in hva_to_pfn_fast()
1237 if (writable) in hva_to_pfn_fast()
1238 *writable = true; in hva_to_pfn_fast()
1250 bool *writable, pfn_t *pfn) in hva_to_pfn_slow() argument
1257 if (writable) in hva_to_pfn_slow()
1258 *writable = write_fault; in hva_to_pfn_slow()
1273 if (unlikely(!write_fault) && writable) { in hva_to_pfn_slow()
1278 *writable = true; in hva_to_pfn_slow()
1315 bool write_fault, bool *writable) in hva_to_pfn() argument
1324 if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn)) in hva_to_pfn()
1330 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn); in hva_to_pfn()
1361 bool *async, bool write_fault, bool *writable) in __gfn_to_pfn_memslot() argument
1372 if (writable && memslot_is_readonly(slot)) { in __gfn_to_pfn_memslot()
1373 *writable = false; in __gfn_to_pfn_memslot()
1374 writable = NULL; in __gfn_to_pfn_memslot()
1378 writable); in __gfn_to_pfn_memslot()
1382 bool write_fault, bool *writable) in __gfn_to_pfn() argument
1392 writable); in __gfn_to_pfn()
1402 bool write_fault, bool *writable) in gfn_to_pfn_async() argument
1404 return __gfn_to_pfn(kvm, gfn, false, async, write_fault, writable); in gfn_to_pfn_async()
1415 bool *writable) in gfn_to_pfn_prot() argument
1417 return __gfn_to_pfn(kvm, gfn, false, NULL, write_fault, writable); in gfn_to_pfn_prot()