/linux/drivers/acpi/acpica/ |
H A D | utexcep.c | 32 const struct acpi_exception_info *exception; in acpi_format_exception() local 36 exception = acpi_ut_validate_exception(status); in acpi_format_exception() 37 if (!exception) { in acpi_format_exception() 47 return (exception->name); in acpi_format_exception() 68 const struct acpi_exception_info *exception = NULL; in ACPI_EXPORT_SYMBOL() local 81 exception = &acpi_gbl_exception_names_env[sub_status]; in ACPI_EXPORT_SYMBOL() 88 exception = &acpi_gbl_exception_names_pgm[sub_status]; in ACPI_EXPORT_SYMBOL() 95 exception = &acpi_gbl_exception_names_tbl[sub_status]; in ACPI_EXPORT_SYMBOL() 102 exception = &acpi_gbl_exception_names_aml[sub_status]; in ACPI_EXPORT_SYMBOL() 109 exception = &acpi_gbl_exception_names_ctrl[sub_status]; in ACPI_EXPORT_SYMBOL() [all …]
|
/linux/tools/testing/selftests/powerpc/tm/ |
H A D | tm-unavailable.c | 47 int exception; member 52 if (flags.touch_fp && flags.exception == FP_UNA_EXCEPTION) in expecting_failure() 55 if (flags.touch_vec && flags.exception == VEC_UNA_EXCEPTION) in expecting_failure() 66 flags.exception == VSX_UNA_EXCEPTION) in expecting_failure() 113 if (flags.exception != FP_UNA_EXCEPTION && in tm_una_ping() 114 flags.exception != VEC_UNA_EXCEPTION && in tm_una_ping() 115 flags.exception != VSX_UNA_EXCEPTION) { in tm_una_ping() 216 [exception] "r" (flags.exception), in tm_una_ping() 341 int cpu, rc, exception; /* FP = 0, VEC = 1, VSX = 2 */ in tm_unavailable_test() local 377 for (exception = 0; exception < NUM_EXCEPTIONS; exception++) { in tm_unavailable_test() [all …]
|
/linux/arch/m68k/fpsp040/ |
H A D | skeleton.S | 7 | Each entry point for exception 'xxxx' begins with a 'jmp fpsp_xxxx'. 10 | the 'fpsp_xxxx' handler entry point should be placed in the exception 12 | exception is one that must be reported then there will be a 16 | that caused the exception will still be pending when the FPSP 18 | to handle the exception. 20 | If the exception was completely handled by the package, then 58 | Divide by Zero exception 80 | Inexact exception 83 | will probably want to clear the pending exception. 84 | The provided code will clear the E3 exception (if pending), [all …]
|
H A D | fpsp.h | 11 | fpsp.h --- stack frame offsets during FPSP exception handling 13 | These equates are used to access the exception frame, the fsave 44 | Positive offsets from A6 refer to the exception frame. Negative 56 | and then either "bra fpsp_done" if the exception was completely 58 | label to a routine that will process a real exception of the 60 | if the FPU state after the exception is idle. 62 | Sometimes the exception handler will transform the fsave area 63 | because it needs to report an exception back to the user. This 92 .set FPCR_ENABLE,USER_FPCR+2 | FPCR exception enable 97 .set FPSR_EXCEPT,USER_FPSR+2 | FPSR exception [all …]
|
/linux/tools/testing/selftests/kvm/x86_64/ |
H A D | nested_exceptions_test.c | 194 TEST_ASSERT(!events.exception.pending, in queue_ss_exception() 195 "Vector %d unexpectedlt pending", events.exception.nr); in queue_ss_exception() 196 TEST_ASSERT(!events.exception.injected, in queue_ss_exception() 197 "Vector %d unexpectedly injected", events.exception.nr); in queue_ss_exception() 200 events.exception.pending = !inject; in queue_ss_exception() 201 events.exception.injected = inject; in queue_ss_exception() 202 events.exception.nr = SS_VECTOR; in queue_ss_exception() 203 events.exception.has_error_code = true; in queue_ss_exception() 204 events.exception.error_code = SS_ERROR_CODE; in queue_ss_exception() 248 TEST_ASSERT_EQ(events.exception.pending, true); in main() [all …]
|
H A D | debug_regs.c | 34 * exception rather than a normal trap for KVM_SET_GUEST_DEBUG (we in guest_code() 35 * capture it using the vcpu exception bitmap). in guest_code() 112 run->debug.arch.exception == BP_VECTOR && in main() 114 "INT3: exit %d exception %d rip 0x%llx (should be 0x%llx)", in main() 115 run->exit_reason, run->debug.arch.exception, in main() 129 run->debug.arch.exception == DB_VECTOR && in main() 132 "INS_HW_BP (DR%d): exit %d exception %d rip 0x%llx " in main() 134 i, run->exit_reason, run->debug.arch.exception, in main() 152 run->debug.arch.exception == DB_VECTOR && in main() 155 "DATA_HW_BP (DR%d): exit %d exception in main() [all...] |
/linux/arch/m68k/ifpsp060/ |
H A D | fskeleton.S | 70 | This is the exit point for the 060FPSP when an enabled overflow exception 72 | for enabled overflow conditions. The exception stack frame is an overflow 75 | The sample routine below simply clears the exception status bit and 89 | This is the exit point for the 060FPSP when an enabled underflow exception 91 | for enabled underflow conditions. The exception stack frame is an underflow 94 | The sample routine below simply clears the exception status bit and 107 | This is the exit point for the 060FPSP when an enabled operand error exception 109 | for enabled operand error exceptions. The exception stack frame is an operand error 113 | The sample routine below simply clears the exception status bit and 126 | This is the exit point for the 060FPSP when an enabled signalling NaN exception [all …]
|
H A D | fpsp.doc | 33 Package. This package is essentially a set of exception handlers 35 These exception handlers emulate Unimplemented FP instructions, 38 includes exception handlers to provide full IEEE-754 compliant 39 exception handling. 100 For example, if the 68060 hardware took a "Line-F Emulator" exception 171 exception taken ---> enter _060_fpsp_snan --| 179 exception taken ---> enter _060_fpsp_operr --| 187 exception taken ---> enter _060_fpsp_dz --| 195 exception taken ---> enter _060_fpsp_inex --| 204 exception taken ---> enter _060_fpsp_ovfl --| [all …]
|
/linux/arch/s390/pci/ |
H A D | pci_mmio.c | 34 int cc, exception; in __pcistb_mio_inuser() local 36 exception = 1; in __pcistb_mio_inuser() 44 : CC_OUT(cc, cc), [len] "+d" (len), [exc] "+d" (exception) in __pcistb_mio_inuser() 48 return exception ? -ENXIO : CC_TRANSFORM(cc); in __pcistb_mio_inuser() 56 int cc, exception; in __pcistg_mio_inuser() local 66 exception = 1; in __pcistg_mio_inuser() 80 [val] "+d" (val), [tmp] "=d" (tmp), [exc] "+d" (exception), in __pcistg_mio_inuser() 86 cc = exception ? -ENXIO : CC_TRANSFORM(cc); in __pcistg_mio_inuser() 205 int cc, exception; in __pcilg_mio_inuser() local 213 exception = 1; in __pcilg_mio_inuser() [all …]
|
/linux/tools/crypto/ccp/ |
H A D | test_dbc.py | 56 self.assertEqual(error.exception.errno, 2) 85 self.assertEqual(error.exception.errno, 22) 94 self.assertEqual(error.exception.errno, 22) 103 self.assertEqual(error.exception.errno, 22) 111 self.assertEqual(error.exception.errno, 22) 119 self.assertEqual(error.exception.errno, 22) 144 self.assertEqual(error.exception.errno, 22) 151 self.assertEqual(error.exception.errno, 1) 157 self.assertEqual(error.exception.errno, 11) 163 self.assertEqual(error.exception.errno, 11) [all …]
|
/linux/drivers/s390/char/ |
H A D | tape_3590.c | 959 char *exception, *service; in tape_3590_print_mim_msg_f0() local 961 exception = kmalloc(BUFSIZE, GFP_ATOMIC); in tape_3590_print_mim_msg_f0() 964 if (!exception || !service) in tape_3590_print_mim_msg_f0() 971 snprintf(exception, BUFSIZE, "Data degraded"); in tape_3590_print_mim_msg_f0() 974 snprintf(exception, BUFSIZE, "Data degraded in partition %i", in tape_3590_print_mim_msg_f0() 978 snprintf(exception, BUFSIZE, "Medium degraded"); in tape_3590_print_mim_msg_f0() 981 snprintf(exception, BUFSIZE, "Medium degraded in partition %i", in tape_3590_print_mim_msg_f0() 985 snprintf(exception, BUFSIZE, "Block 0 Error"); in tape_3590_print_mim_msg_f0() 988 snprintf(exception, BUFSIZE, "Medium Exception 0x%02x", in tape_3590_print_mim_msg_f0() 992 snprintf(exception, BUFSIZE, "0x%02x", in tape_3590_print_mim_msg_f0() [all …]
|
/linux/drivers/net/wireless/mediatek/mt76/mt7996/ |
H A D | coredump.c | 102 bool *exception) in mt7996_coredump_fw_state() argument 114 *exception = !!count; in mt7996_coredump_fw_state() 119 bool exception) in mt7996_coredump_fw_stack() argument 134 if (!exception) { in mt7996_coredump_fw_stack() 156 if (!exception) { in mt7996_coredump_fw_stack() 169 bool exception; in mt7996_coredump_build() local 201 mt7996_coredump_fw_state(dev, dump, &exception); in mt7996_coredump_build() 202 mt7996_coredump_fw_stack(dev, dump, exception); in mt7996_coredump_build()
|
/linux/Documentation/translations/zh_CN/process/ |
H A D | license-rules.rst | 101 // SPDX-License-Identifier: GPL-2.0 WITH mif-exception 102 // SPDX-License-Identifier: GPL-2.0+ WITH GCC-exception-2.0 265 LICENSES/exceptions/GCC-exception-2.0 301 This exception is used together with one of the above SPDX-Licenses 304 To use this exception add it with the keyword WITH to one of the 308 Full exception text 312 SPDX-Exception-Identifier: GCC-exception-2.0 313 SPDX-URL: https://spdx.org/licenses/GCC-exception-2.0.html 316 The "GCC Runtime Library exception 2.0" is used together with one 319 To use this exception add it with the keyword WITH to one of the [all …]
|
/linux/Documentation/translations/zh_TW/process/ |
H A D | license-rules.rst | 102 // SPDX-License-Identifier: GPL-2.0 WITH mif-exception 103 // SPDX-License-Identifier: GPL-2.0+ WITH GCC-exception-2.0 266 LICENSES/exceptions/GCC-exception-2.0 302 This exception is used together with one of the above SPDX-Licenses 305 To use this exception add it with the keyword WITH to one of the 309 Full exception text 313 SPDX-Exception-Identifier: GCC-exception-2.0 314 SPDX-URL: https://spdx.org/licenses/GCC-exception-2.0.html 317 The "GCC Runtime Library exception 2.0" is used together with one 320 To use this exception add it with the keyword WITH to one of the [all …]
|
/linux/LICENSES/exceptions/ |
H A D | GCC-exception-2.0 | 1 SPDX-Exception-Identifier: GCC-exception-2.0 2 SPDX-URL: https://spdx.org/licenses/GCC-exception-2.0.html 5 This exception is used together with one of the above SPDX-Licenses to 7 To use this exception add it with the keyword WITH to one of the 9 SPDX-License-Identifier: <SPDX-License> WITH GCC-exception-2.0
|
/linux/drivers/net/wireless/mediatek/mt76/mt7915/ |
H A D | coredump.c | 145 bool *exception) in mt7915_coredump_fw_state() argument 163 *exception = !!count; in mt7915_coredump_fw_state() 168 bool exception) in mt7915_coredump_fw_trace() argument 190 if (exception) { in mt7915_coredump_fw_trace() 225 bool exception) in mt7915_coredump_fw_stack() argument 230 if (!exception) in mt7915_coredump_fw_stack() 240 if (!exception) in mt7915_coredump_fw_stack() 309 bool exception; in mt7915_coredump_build() local 341 mt7915_coredump_fw_state(dev, dump, &exception); in mt7915_coredump_build() 342 mt7915_coredump_fw_trace(dev, dump, exception); in mt7915_coredump_build() [all …]
|
/linux/fs/nfs/ |
H A D | nfs4proc.c | 482 int errorcode, struct nfs4_exception *exception) in nfs4_do_handle_exception() argument 485 struct nfs4_state *state = exception->state; in nfs4_do_handle_exception() 487 struct inode *inode = exception->inode; in nfs4_do_handle_exception() 490 exception->delay = 0; in nfs4_do_handle_exception() 491 exception->recovering = 0; in nfs4_do_handle_exception() 492 exception->retry = 0; in nfs4_do_handle_exception() 494 stateid = nfs4_recoverable_stateid(exception->stateid); in nfs4_do_handle_exception() 526 exception->retry = 1; in nfs4_do_handle_exception() 560 if (exception->timeout > HZ) { in nfs4_do_handle_exception() 575 exception->delay = 1; in nfs4_do_handle_exception() [all …]
|
H A D | nfs42proc.c | 104 struct nfs4_exception exception = { }; in nfs42_proc_fallocate() local 112 exception.inode = inode; in nfs42_proc_fallocate() 113 exception.state = lock->open_context->state; in nfs42_proc_fallocate() 125 err = nfs4_handle_exception(server, err, &exception); in nfs42_proc_fallocate() 126 } while (exception.retry); in nfs42_proc_fallocate() 631 struct nfs4_exception exception = { in nfs42_proc_copy_notify() local 646 exception.stateid = &args->cna_src_stateid; in nfs42_proc_copy_notify() 654 status = nfs4_handle_exception(src_server, status, &exception); in nfs42_proc_copy_notify() 655 } while (exception.retry); in nfs42_proc_copy_notify() 714 struct nfs4_exception exception = { }; in nfs42_proc_llseek() local [all …]
|
/linux/tools/lib/subcmd/ |
H A D | pager.c | 40 fd_set exception; in pager_preexec() local 43 FD_ZERO(&exception); in pager_preexec() 45 FD_SET(0, &exception); in pager_preexec() 46 select(1, &in, NULL, &exception, NULL); in pager_preexec()
|
/linux/arch/s390/boot/ |
H A D | physmem_info.c | 63 int cc, exception; in __diag260() local 69 exception = 1; in __diag260() 82 [exc] "+d" (exception), in __diag260() 92 cc = exception ? -1 : CC_TRANSFORM(cc); in __diag260() 154 int cc, exception; in tprot() local 157 exception = 1; in tprot() 170 [exc] "+d" (exception), in tprot() 179 cc = exception ? -EFAULT : CC_TRANSFORM(cc); in tprot()
|
/linux/arch/sh/kernel/cpu/sh2a/ |
H A D | entry.S | 68 add #(3+2)*4,r0 ! rewind r0 - r3 + exception frame 80 ! in kernel exception 86 ! restore exception frame & regs 105 ! dispatch exception / interrupt 117 mov.l @r8,r8 ! exception handler address 120 mov.l 8f,r8 ! unhandled exception 198 ! overlap exception frame 215 mov.l r2,@(OFF_SP,r0) ! point exception frame top 233 ! common exception handler
|
/linux/arch/arm/nwfpe/ |
H A D | softfloat.c | 100 roundData->exception |= float_flag_invalid; in roundAndPackInt32() 103 if ( roundBits ) roundData->exception |= float_flag_inexact; in roundAndPackInt32() 247 roundData->exception |= float_flag_overflow | float_flag_inexact; in roundAndPackFloat32() 258 if ( isTiny && roundBits ) roundData->exception |= float_flag_underflow; in roundAndPackFloat32() 261 if ( roundBits ) roundData->exception |= float_flag_inexact; in roundAndPackFloat32() 420 roundData->exception |= float_flag_overflow | float_flag_inexact; in roundAndPackFloat64() 431 if ( isTiny && roundBits ) roundData->exception |= float_flag_underflow; in roundAndPackFloat64() 434 if ( roundBits ) roundData->exception |= float_flag_inexact; in roundAndPackFloat64() 618 if ( isTiny && roundBits ) roundData->exception |= float_flag_underflow; in roundAndPackFloatx80() 619 if ( roundBits ) roundData->exception |= float_flag_inexact; in roundAndPackFloatx80() [all …]
|
/linux/tools/testing/selftests/drivers/net/ |
H A D | stats.py | 134 ksft_eq(cm.exception.nl_msg.error, -34) 135 ksft_eq(cm.exception.nl_msg.extack['bad-attr'], '.ifindex') 140 ksft_eq(cm.exception.nl_msg.error, -errno.EOPNOTSUPP) 141 ksft_eq(cm.exception.nl_msg.extack['bad-attr'], '.ifindex') 152 ksft_eq(cm.exception.nl_msg.error, -19) 153 ksft_eq(cm.exception.nl_msg.extack['bad-attr'], '.ifindex')
|
/linux/arch/mips/kernel/ |
H A D | genex.S | 513 .macro __BUILD_silent exception argument 530 .macro __BUILD_count exception argument 531 LONG_L t0,exception_count_\exception 533 LONG_S t0,exception_count_\exception 534 .comm exception_count\exception, 8, 8 537 .macro __BUILD_HANDLER exception handler clear verbose ext 539 NESTED(handle_\exception, PT_SIZE, sp) 543 FEXPORT(handle_\exception\ext) 546 __BUILD_\verbose \exception 550 END(handle_\exception) [all …]
|
/linux/arch/loongarch/kernel/ |
H A D | genex.S | 69 .macro BUILD_HANDLER exception handler prep 71 SYM_CODE_START(handle_\exception) 82 SYM_CODE_END(handle_\exception) 84 SYM_DATA(unwind_hint_\exception, .word 668b - 666b)
|