/Linux-v5.15/tools/arch/s390/include/uapi/asm/ |
D | sie.h | 90 #define exit_code(opcode, mnemonic) \ macro 190 exit_code(0x0a, "SVC"), \ 191 exit_code(0x80, "SSM"), \ 192 exit_code(0x82, "LPSW"), \ 193 exit_code(0x83, "DIAG"), \ 194 exit_code(0xae, "SIGP"), \ 195 exit_code(0xac, "STNSM"), \ 196 exit_code(0xad, "STOSM"), \ 197 exit_code(0xb1, "LRA"), \ 198 exit_code(0xb6, "STCTL"), \ [all …]
|
/Linux-v5.15/arch/s390/include/uapi/asm/ |
D | sie.h | 90 #define exit_code(opcode, mnemonic) \ macro 190 exit_code(0x0a, "SVC"), \ 191 exit_code(0x80, "SSM"), \ 192 exit_code(0x82, "LPSW"), \ 193 exit_code(0x83, "DIAG"), \ 194 exit_code(0xae, "SIGP"), \ 195 exit_code(0xac, "STNSM"), \ 196 exit_code(0xad, "STOSM"), \ 197 exit_code(0xb1, "LRA"), \ 198 exit_code(0xb6, "STCTL"), \ [all …]
|
/Linux-v5.15/lib/kunit/ |
D | try-catch.c | 63 int exit_code, time_remaining; in kunit_try_catch_run() local 83 exit_code = try_catch->try_result; in kunit_try_catch_run() 85 if (!exit_code) in kunit_try_catch_run() 88 if (exit_code == -EFAULT) in kunit_try_catch_run() 90 else if (exit_code == -EINTR) in kunit_try_catch_run() 92 else if (exit_code) in kunit_try_catch_run() 93 kunit_err(test, "Unknown error: %d\n", exit_code); in kunit_try_catch_run()
|
/Linux-v5.15/tools/testing/selftests/net/ |
D | gro.sh | 14 local exit_code=0 33 exit_code=$? 34 if [[ "${exit_code}" -eq 0 ]]; then 39 echo ${exit_code} 47 exit_code=$(run_test $proto $test) 48 if [[ "${exit_code}" -ne 0 ]]; then
|
D | setup_loopback.sh | 50 exit_code=$? 51 if [[ "${exit_code}" -ne 0 ]]; then 53 exit $exit_code
|
D | toeplitz.sh | 194 exit_code=$? 196 if [[ "${exit_code}" -eq 0 ]]; then 199 exit "${exit_code}"
|
/Linux-v5.15/tools/testing/selftests/ptrace/ |
D | peeksiginfo.c | 47 int ret, exit_code = -1; in check_error_paths() local 99 exit_code = 0; in check_error_paths() 102 return exit_code; in check_error_paths() 108 int i, j, ret, exit_code = -1; in check_direct_path() local 147 exit_code = 0; in check_direct_path() 149 return exit_code; in check_direct_path() 155 int i, exit_code = 1; in main() local 211 exit_code = 0; in main() 218 return exit_code; in main()
|
/Linux-v5.15/arch/x86/kernel/ |
D | sev-shared.c | 70 static bool vc_decoding_needed(unsigned long exit_code) in vc_decoding_needed() argument 73 return !(exit_code >= SVM_EXIT_EXCP_BASE && in vc_decoding_needed() 74 exit_code <= SVM_EXIT_LAST_EXCP); in vc_decoding_needed() 79 unsigned long exit_code) in vc_init_em_ctxt() argument 86 if (vc_decoding_needed(exit_code)) in vc_init_em_ctxt() 99 u64 exit_code, u64 exit_info_1, in sev_es_ghcb_hv_call() argument 108 ghcb_set_sw_exit_code(ghcb, exit_code); in sev_es_ghcb_hv_call() 147 void __init do_vc_no_ghcb(struct pt_regs *regs, unsigned long exit_code) in do_vc_no_ghcb() argument 153 if (exit_code != SVM_EXIT_CPUID) in do_vc_no_ghcb() 509 unsigned long exit_code) in vc_handle_rdtsc() argument [all …]
|
D | sev.c | 844 u64 exit_code, exit_info_1, exit_info_2; in vc_do_mmio() local 854 exit_code = read ? SVM_VMGEXIT_MMIO_READ : SVM_VMGEXIT_MMIO_WRITE; in vc_do_mmio() 870 return sev_es_ghcb_hv_call(ghcb, ctxt, exit_code, exit_info_1, exit_info_2); in vc_do_mmio() 1236 unsigned long exit_code) in vc_handle_exitcode() argument 1240 switch (exit_code) { in vc_handle_exitcode() 1252 result = vc_handle_rdtsc(ghcb, ctxt, exit_code); in vc_handle_exitcode() 1474 unsigned long exit_code = regs->orig_ax; in handle_vc_boot_ghcb() local 1484 result = vc_init_em_ctxt(&ctxt, regs, exit_code); in handle_vc_boot_ghcb() 1486 result = vc_handle_exitcode(&ctxt, boot_ghcb, exit_code); in handle_vc_boot_ghcb() 1495 exit_code, regs->ip); in handle_vc_boot_ghcb() [all …]
|
/Linux-v5.15/scripts/ |
D | modules-check.sh | 11 exit_code=0 20 exit_code=1 26 exit $exit_code
|
/Linux-v5.15/arch/sparc/include/asm/ |
D | ptrace.h | 29 #define arch_ptrace_stop_needed(exit_code, info) \ argument 34 #define arch_ptrace_stop(exit_code, info) \ argument 132 #define arch_ptrace_stop_needed(exit_code, info) \ argument 137 #define arch_ptrace_stop(exit_code, info) \ argument
|
/Linux-v5.15/arch/x86/boot/compressed/ |
D | sev.c | 172 void do_boot_stage2_vc(struct pt_regs *regs, unsigned long exit_code) in do_boot_stage2_vc() argument 181 result = vc_init_em_ctxt(&ctxt, regs, exit_code); in do_boot_stage2_vc() 185 switch (exit_code) { in do_boot_stage2_vc() 188 result = vc_handle_rdtsc(boot_ghcb, &ctxt, exit_code); in do_boot_stage2_vc()
|
/Linux-v5.15/arch/arm64/kvm/hyp/vhe/ |
D | switch.c | 104 u64 exit_code; in __kvm_vcpu_run_vhe() local 133 exit_code = __guest_enter(vcpu); in __kvm_vcpu_run_vhe() 136 } while (fixup_guest_exit(vcpu, &exit_code)); in __kvm_vcpu_run_vhe() 149 return exit_code; in __kvm_vcpu_run_vhe()
|
/Linux-v5.15/Documentation/sphinx/ |
D | kfigure.py | 296 exit_code = 42 299 exit_code = subprocess.call(cmd, stdout = out) 300 if exit_code != 0: 302 "Error #%d when calling: %s" % (exit_code, " ".join(cmd))) 303 return bool(exit_code == 0) 317 exit_code = subprocess.call(cmd) 318 if exit_code != 0: 319 kernellog.warn(app, "Error #%d when calling: %s" % (exit_code, " ".join(cmd))) 320 return bool(exit_code == 0)
|
/Linux-v5.15/include/linux/ |
D | tracehook.h | 73 if (current->exit_code) { in ptrace_report_syscall() 74 send_sig(current->exit_code, current, 1); in ptrace_report_syscall() 75 current->exit_code = 0; in ptrace_report_syscall()
|
/Linux-v5.15/tools/perf/arch/powerpc/util/ |
D | kvm-stat.c | 45 static const char *get_hcall_exit_reason(u64 exit_code) in get_hcall_exit_reason() argument 50 if (tbl->exit_code == exit_code) in get_hcall_exit_reason() 56 (unsigned long long)exit_code); in get_hcall_exit_reason()
|
/Linux-v5.15/arch/x86/kvm/svm/ |
D | nested.c | 39 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) { in nested_svm_inject_npf_exit() 44 svm->vmcb->control.exit_code = SVM_EXIT_NPF; in nested_svm_inject_npf_exit() 63 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + PF_VECTOR; in svm_inject_page_fault_nested() 182 dst->exit_code = from->exit_code; in copy_vmcb_control_area() 664 vmcb12->control.exit_code = SVM_EXIT_ERR; in nested_svm_vmrun() 695 svm->vmcb->control.exit_code = SVM_EXIT_ERR; in nested_svm_vmrun() 797 vmcb12->control.exit_code = vmcb->control.exit_code; in nested_svm_vmexit() 802 if (vmcb12->control.exit_code != SVM_EXIT_ERR) in nested_svm_vmexit() 851 trace_kvm_nested_vmexit_inject(vmcb12->control.exit_code, in nested_svm_vmexit() 1016 u32 exit_code = svm->vmcb->control.exit_code; in nested_svm_intercept() local [all …]
|
D | svm.c | 2450 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE; in check_selective_cr0_intercepted() 2473 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE) in cr_interception() 2476 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0; in cr_interception() 2542 cr = svm->vmcb->control.exit_code - SVM_EXIT_CR0_WRITE_TRAP; in cr_trap() 2590 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0; in dr_interception() 3154 pr_err("%-20s%08x\n", "exit_code:", control->exit_code); in dump_vmcb() 3243 static bool svm_check_exit_valid(struct kvm_vcpu *vcpu, u64 exit_code) in svm_check_exit_valid() argument 3245 return (exit_code < ARRAY_SIZE(svm_exit_handlers) && in svm_check_exit_valid() 3246 svm_exit_handlers[exit_code]); in svm_check_exit_valid() 3249 static int svm_handle_invalid_exit(struct kvm_vcpu *vcpu, u64 exit_code) in svm_handle_invalid_exit() argument [all …]
|
/Linux-v5.15/arch/arm64/kvm/hyp/nvhe/ |
D | switch.c | 168 u64 exit_code; in __kvm_vcpu_run() local 221 exit_code = __guest_enter(vcpu); in __kvm_vcpu_run() 224 } while (fixup_guest_exit(vcpu, &exit_code)); in __kvm_vcpu_run() 255 return exit_code; in __kvm_vcpu_run()
|
/Linux-v5.15/tools/testing/selftests/bpf/ |
D | get_cgroup_id_user.c | 58 int exit_code = 1; in main() local 133 exit_code = 0; in main() 142 return exit_code; in main()
|
/Linux-v5.15/kernel/ |
D | exit.c | 809 tsk->exit_code = code; in do_exit() 899 do_group_exit(int exit_code) in do_group_exit() argument 903 BUG_ON(exit_code & 0x80); /* core dumps don't get here */ in do_group_exit() 906 exit_code = sig->group_exit_code; in do_group_exit() 913 exit_code = sig->group_exit_code; in do_group_exit() 915 sig->group_exit_code = exit_code; in do_group_exit() 922 do_exit(exit_code); in do_group_exit() 1008 status = p->exit_code; in wait_task_zombie() 1091 ? p->signal->group_exit_code : p->exit_code; in wait_task_zombie() 1130 return &p->exit_code; in task_stopped_code() [all …]
|
/Linux-v5.15/arch/xtensa/platforms/iss/include/platform/ |
D | simcall.h | 24 static inline int simc_exit(int exit_code) in simc_exit() argument 27 return __simc(SYS_exit, exit_code, 0, 0); in simc_exit()
|
/Linux-v5.15/arch/arm64/kvm/hyp/include/hyp/ |
D | switch.h | 417 static inline bool fixup_guest_exit(struct kvm_vcpu *vcpu, u64 *exit_code) in fixup_guest_exit() argument 419 if (ARM_EXCEPTION_CODE(*exit_code) != ARM_EXCEPTION_IRQ) in fixup_guest_exit() 422 if (ARM_SERROR_PENDING(*exit_code)) { in fixup_guest_exit() 443 if (*exit_code != ARM_EXCEPTION_TRAP) in fixup_guest_exit() 484 *exit_code = ARM_EXCEPTION_EL1_SERROR; in fixup_guest_exit()
|
/Linux-v5.15/tools/testing/selftests/clone3/ |
D | clone3_set_tid.c | 66 int exit_code = EXIT_SUCCESS; in call_clone3_set_tid() local 80 exit_code = EXIT_FAILURE; in call_clone3_set_tid() 88 exit_code = EXIT_FAILURE; in call_clone3_set_tid() 95 child_exit(exit_code); in call_clone3_set_tid()
|
/Linux-v5.15/arch/m68k/kernel/ |
D | ptrace.c | 283 if (current->exit_code) { in syscall_trace() 284 send_sig(current->exit_code, current, 1); in syscall_trace() 285 current->exit_code = 0; in syscall_trace()
|