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()
485 pte_t new_val, unsigned long flags) in MULTI_update_va_mapping() argument
489 if (sizeof(new_val) == sizeof(long)) { in MULTI_update_va_mapping()
490 mcl->args[1] = new_val.pte; in MULTI_update_va_mapping()
493 mcl->args[1] = new_val.pte; in MULTI_update_va_mapping()
494 mcl->args[2] = new_val.pte >> 32; in MULTI_update_va_mapping()
498 trace_xen_mc_entry(mcl, sizeof(new_val) == sizeof(long) ? 3 : 4); in MULTI_update_va_mapping()
515 pte_t new_val, unsigned long flags, in MULTI_update_va_mapping_otherdomain() argument
520 if (sizeof(new_val) == sizeof(long)) { in MULTI_update_va_mapping_otherdomain()
521 mcl->args[1] = new_val.pte; in MULTI_update_va_mapping_otherdomain()
525 mcl->args[1] = new_val.pte; in MULTI_update_va_mapping_otherdomain()
526 mcl->args[2] = new_val.pte >> 32; in MULTI_update_va_mapping_otherdomain()
531 trace_xen_mc_entry(mcl, sizeof(new_val) == sizeof(long) ? 4 : 5); in MULTI_update_va_mapping_otherdomain()