/Linux-v5.10/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.10/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.10/tools/testing/selftests/bpf/ |
D | test_current_pid_tgid_new_ns.c | 34 int exit_code = 1; in main() local 42 return exit_code; in main() 47 return exit_code; in main() 53 return exit_code; in main() 68 return exit_code; in main() 78 return exit_code; in main() 82 return exit_code; in main() 90 int exit_code = 1; in main() local 98 return exit_code; in main() 149 exit_code = 0; in main()
|
D | get_cgroup_id_user.c | 58 int exit_code = 1; in main() local 129 exit_code = 0; in main() 138 return exit_code; in main()
|
/Linux-v5.10/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.10/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.10/arch/x86/kernel/ |
D | sev-es-shared.c | 69 static bool vc_decoding_needed(unsigned long exit_code) in vc_decoding_needed() argument 72 return !(exit_code >= SVM_EXIT_EXCP_BASE && in vc_decoding_needed() 73 exit_code <= SVM_EXIT_LAST_EXCP); in vc_decoding_needed() 78 unsigned long exit_code) in vc_init_em_ctxt() argument 85 if (vc_decoding_needed(exit_code)) in vc_init_em_ctxt() 98 u64 exit_code, u64 exit_info_1, in sev_es_ghcb_hv_call() argument 107 ghcb_set_sw_exit_code(ghcb, exit_code); in sev_es_ghcb_hv_call() 144 void __init do_vc_no_ghcb(struct pt_regs *regs, unsigned long exit_code) in do_vc_no_ghcb() argument 150 if (exit_code != SVM_EXIT_CPUID) in do_vc_no_ghcb() 514 unsigned long exit_code) in vc_handle_rdtsc() argument [all …]
|
D | sev-es.c | 736 u64 exit_code, exit_info_1, exit_info_2; in vc_do_mmio() local 746 exit_code = read ? SVM_VMGEXIT_MMIO_READ : SVM_VMGEXIT_MMIO_WRITE; in vc_do_mmio() 762 return sev_es_ghcb_hv_call(ghcb, ctxt, exit_code, exit_info_1, exit_info_2); in vc_do_mmio() 1136 unsigned long exit_code) in vc_handle_exitcode() argument 1140 switch (exit_code) { in vc_handle_exitcode() 1152 result = vc_handle_rdtsc(ghcb, ctxt, exit_code); in vc_handle_exitcode() 1362 unsigned long exit_code = regs->orig_ax; in handle_vc_boot_ghcb() local 1372 result = vc_init_em_ctxt(&ctxt, regs, exit_code); in handle_vc_boot_ghcb() 1374 result = vc_handle_exitcode(&ctxt, boot_ghcb, exit_code); in handle_vc_boot_ghcb() 1383 exit_code, regs->ip); in handle_vc_boot_ghcb() [all …]
|
/Linux-v5.10/scripts/ |
D | modules-check.sh | 11 exit_code=0 20 exit_code=1 26 exit $exit_code
|
/Linux-v5.10/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.10/arch/x86/kvm/svm/ |
D | nested.c | 37 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) { in nested_svm_inject_npf_exit() 42 svm->vmcb->control.exit_code = SVM_EXIT_NPF; in nested_svm_inject_npf_exit() 151 dst->exit_code = from->exit_code; in copy_vmcb_control_area() 488 vmcb12->control.exit_code = SVM_EXIT_ERR; in nested_svm_vmrun() 547 svm->vmcb->control.exit_code = SVM_EXIT_ERR; in nested_svm_vmrun() 623 vmcb12->control.exit_code = vmcb->control.exit_code; in nested_svm_vmexit() 628 if (vmcb12->control.exit_code != SVM_EXIT_ERR) in nested_svm_vmexit() 675 trace_kvm_nested_vmexit_inject(vmcb12->control.exit_code, in nested_svm_vmexit() 813 u32 exit_code = svm->vmcb->control.exit_code; in nested_svm_intercept() local 816 switch (exit_code) { in nested_svm_intercept() [all …]
|
D | svm.c | 2329 svm->vmcb->control.exit_code = SVM_EXIT_CR0_SEL_WRITE; in check_selective_cr0_intercepted() 2351 if (svm->vmcb->control.exit_code == SVM_EXIT_CR0_SEL_WRITE) in cr_interception() 2354 cr = svm->vmcb->control.exit_code - SVM_EXIT_READ_CR0; in cr_interception() 2431 dr = svm->vmcb->control.exit_code - SVM_EXIT_READ_DR0; in dr_interception() 2961 pr_err("%-20s%08x\n", "exit_code:", control->exit_code); in dump_vmcb() 3067 u32 exit_code = svm->vmcb->control.exit_code; in handle_exit() local 3069 trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM); in handle_exit() 3079 trace_kvm_nested_vmexit(exit_code, vcpu, KVM_ISA_SVM); in handle_exit() 3090 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) { in handle_exit() 3093 = svm->vmcb->control.exit_code; in handle_exit() [all …]
|
/Linux-v5.10/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.10/arch/x86/boot/compressed/ |
D | sev-es.c | 173 void do_boot_stage2_vc(struct pt_regs *regs, unsigned long exit_code) in do_boot_stage2_vc() argument 182 result = vc_init_em_ctxt(&ctxt, regs, exit_code); in do_boot_stage2_vc() 186 switch (exit_code) { in do_boot_stage2_vc() 189 result = vc_handle_rdtsc(boot_ghcb, &ctxt, exit_code); in do_boot_stage2_vc()
|
/Linux-v5.10/arch/arm64/kvm/hyp/vhe/ |
D | switch.c | 114 u64 exit_code; in __kvm_vcpu_run_vhe() local 141 exit_code = __guest_enter(vcpu); in __kvm_vcpu_run_vhe() 144 } while (fixup_guest_exit(vcpu, &exit_code)); in __kvm_vcpu_run_vhe() 157 return exit_code; in __kvm_vcpu_run_vhe()
|
/Linux-v5.10/Documentation/sphinx/ |
D | kfigure.py | 308 exit_code = 42 311 exit_code = subprocess.call(cmd, stdout = out) 312 if exit_code != 0: 314 "Error #%d when calling: %s" % (exit_code, " ".join(cmd))) 315 return bool(exit_code == 0) 329 exit_code = subprocess.call(cmd) 330 if exit_code != 0: 331 kernellog.warn(app, "Error #%d when calling: %s" % (exit_code, " ".join(cmd))) 332 return bool(exit_code == 0)
|
/Linux-v5.10/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.10/arch/arm64/kvm/hyp/nvhe/ |
D | switch.c | 171 u64 exit_code; in __kvm_vcpu_run() local 213 exit_code = __guest_enter(vcpu); in __kvm_vcpu_run() 216 } while (fixup_guest_exit(vcpu, &exit_code)); in __kvm_vcpu_run() 246 return exit_code; in __kvm_vcpu_run()
|
/Linux-v5.10/kernel/ |
D | exit.c | 793 tsk->exit_code = code; in do_exit() 883 do_group_exit(int exit_code) in do_group_exit() argument 887 BUG_ON(exit_code & 0x80); /* core dumps don't get here */ in do_group_exit() 890 exit_code = sig->group_exit_code; in do_group_exit() 897 exit_code = sig->group_exit_code; in do_group_exit() 899 sig->group_exit_code = exit_code; in do_group_exit() 906 do_exit(exit_code); in do_group_exit() 992 status = p->exit_code; in wait_task_zombie() 1075 ? p->signal->group_exit_code : p->exit_code; in wait_task_zombie() 1114 return &p->exit_code; in task_stopped_code() [all …]
|
/Linux-v5.10/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.10/arch/xtensa/platforms/iss/include/platform/ |
D | simcall.h | 82 static inline int simc_exit(int exit_code) in simc_exit() argument 84 return __simc(SYS_exit, exit_code, 0, 0); in simc_exit()
|
/Linux-v5.10/arch/arm64/kvm/hyp/include/hyp/ |
D | switch.h | 407 static inline bool fixup_guest_exit(struct kvm_vcpu *vcpu, u64 *exit_code) in fixup_guest_exit() argument 409 if (ARM_EXCEPTION_CODE(*exit_code) != ARM_EXCEPTION_IRQ) in fixup_guest_exit() 418 if (*exit_code != ARM_EXCEPTION_TRAP) in fixup_guest_exit() 459 *exit_code = ARM_EXCEPTION_EL1_SERROR; in fixup_guest_exit()
|
/Linux-v5.10/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()
|
/Linux-v5.10/fs/ |
D | coredump.c | 350 static int zap_process(struct task_struct *start, int exit_code, int flags) in zap_process() argument 357 start->signal->group_exit_code = exit_code; in zap_process() 373 struct core_state *core_state, int exit_code) in zap_threads() argument 383 nr = zap_process(tsk, exit_code, 0); in zap_threads() 435 nr += zap_process(p, exit_code, in zap_threads() 448 static int coredump_wait(int exit_code, struct core_state *core_state) in coredump_wait() argument 462 core_waiters = zap_threads(tsk, mm, core_state, exit_code); in coredump_wait()
|
/Linux-v5.10/tools/testing/selftests/tc-testing/ |
D | tdc.py | 279 exit_code = p.returncode 281 exit_code = None 285 if (exit_code is None or exit_code != int(tidx["expExitCode"])): 286 print("exit: {!r}".format(exit_code)) 290 …res.set_failmsg('Command exited with {}, expected {}\n{}'.format(exit_code, tidx["expExitCode"], p…
|