Lines Matching refs:new_val
352 HYPERVISOR_update_va_mapping(unsigned long va, pte_t new_val, in HYPERVISOR_update_va_mapping() argument
355 if (sizeof(new_val) == sizeof(long)) in HYPERVISOR_update_va_mapping()
357 new_val.pte, flags); in HYPERVISOR_update_va_mapping()
360 new_val.pte, new_val.pte >> 32, flags); in HYPERVISOR_update_va_mapping()
403 HYPERVISOR_update_va_mapping_otherdomain(unsigned long va, pte_t new_val, in HYPERVISOR_update_va_mapping_otherdomain() argument
406 if (sizeof(new_val) == sizeof(long)) in HYPERVISOR_update_va_mapping_otherdomain()
408 new_val.pte, flags, domid); in HYPERVISOR_update_va_mapping_otherdomain()
411 new_val.pte, new_val.pte >> 32, in HYPERVISOR_update_va_mapping_otherdomain()
479 pte_t new_val, unsigned long flags) in MULTI_update_va_mapping() argument
483 if (sizeof(new_val) == sizeof(long)) { in MULTI_update_va_mapping()
484 mcl->args[1] = new_val.pte; in MULTI_update_va_mapping()
487 mcl->args[1] = new_val.pte; in MULTI_update_va_mapping()
488 mcl->args[2] = new_val.pte >> 32; in MULTI_update_va_mapping()
492 trace_xen_mc_entry(mcl, sizeof(new_val) == sizeof(long) ? 3 : 4); in MULTI_update_va_mapping()
509 pte_t new_val, unsigned long flags, in MULTI_update_va_mapping_otherdomain() argument
514 if (sizeof(new_val) == sizeof(long)) { in MULTI_update_va_mapping_otherdomain()
515 mcl->args[1] = new_val.pte; in MULTI_update_va_mapping_otherdomain()
519 mcl->args[1] = new_val.pte; in MULTI_update_va_mapping_otherdomain()
520 mcl->args[2] = new_val.pte >> 32; in MULTI_update_va_mapping_otherdomain()
525 trace_xen_mc_entry(mcl, sizeof(new_val) == sizeof(long) ? 4 : 5); in MULTI_update_va_mapping_otherdomain()