Lines Matching refs:ret
629 int ret; in handle_pqap() local
678 ret = vcpu->kvm->arch.crypto.pqap_hook->hook(vcpu); in handle_pqap()
680 if (!ret && vcpu->run->s.regs.gprs[1] & 0x00ff0000) in handle_pqap()
682 return ret; in handle_pqap()
1458 int ret = 0, cc = 0; in handle_tprot() local
1476 ret = guest_translate_address(vcpu, address1, ar, &gpa, GACC_STORE); in handle_tprot()
1477 if (ret == PGM_PROTECTION) { in handle_tprot()
1480 ret = guest_translate_address(vcpu, address1, ar, &gpa, in handle_tprot()
1483 if (ret) { in handle_tprot()
1484 if (ret == PGM_ADDRESSING || ret == PGM_TRANSLATION_SPEC) { in handle_tprot()
1485 ret = kvm_s390_inject_program_int(vcpu, ret); in handle_tprot()
1486 } else if (ret > 0) { in handle_tprot()
1489 ret = 0; in handle_tprot()
1496 ret = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); in handle_tprot()
1506 return ret; in handle_tprot()