/linux-4.4.14/drivers/ide/ |
D | ide-eh.c | 15 rq->errors |= ERROR_RESET; in ide_ata_error() 28 rq->errors = ERROR_MAX; in ide_ata_error() 31 rq->errors |= ERROR_RECAL; in ide_ata_error() 42 if (rq->errors >= ERROR_MAX || blk_noretry_request(rq)) { in ide_ata_error() 48 rq->errors |= ERROR_RESET; in ide_ata_error() 50 if ((rq->errors & ERROR_RESET) == ERROR_RESET) { in ide_ata_error() 51 ++rq->errors; in ide_ata_error() 55 if ((rq->errors & ERROR_RECAL) == ERROR_RECAL) in ide_ata_error() 58 ++rq->errors; in ide_ata_error() 71 rq->errors |= ERROR_RESET; in ide_atapi_error() [all …]
|
D | ide-floppy.c | 101 rq->errors = uptodate ? 0 : IDE_DRV_ERROR_GENERAL; in ide_floppy_callback() 242 if (rq->errors >= ERROR_MAX) { in ide_floppy_do_request() 250 rq->errors = 0; in ide_floppy_do_request() 299 if (rq->cmd_type != REQ_TYPE_FS && rq->errors == 0) in ide_floppy_do_request() 300 rq->errors = -EIO; in ide_floppy_do_request()
|
D | ide-pm.c | 57 rq->errors = -ENXIO; in ide_pm_execute_rq() 58 __blk_end_request_all(rq, rq->errors); in ide_pm_execute_rq() 68 return rq->errors ? -EIO : 0; in ide_pm_execute_rq()
|
D | ide-devsets.c | 176 ret = rq->errors; in ide_devset_execute() 188 rq->errors = err; in ide_do_devset()
|
D | ide-io.c | 144 rq->errors = 0; in ide_kill_rq() 147 rq->errors = IDE_DRV_ERROR_GENERAL; in ide_kill_rq() 148 else if (rq->cmd_type != REQ_TYPE_FS && rq->errors == 0) in ide_kill_rq() 149 rq->errors = -EIO; in ide_kill_rq() 274 rq->errors = 0; in execute_drive_cmd()
|
D | ide-cd.c | 252 if (!rq->errors) in ide_cd_breathe() 255 rq->errors = 1; in ide_cd_breathe() 299 if (rq->cmd_type == REQ_TYPE_BLOCK_PC && !rq->errors) in cdrom_decode_status() 300 rq->errors = SAM_STAT_CHECK_CONDITION; in cdrom_decode_status() 330 if (++rq->errors > ERROR_MAX) in cdrom_decode_status() 377 } else if (++rq->errors > ERROR_MAX) in cdrom_decode_status() 678 if (uptodate <= 0 && rq->errors == 0) in cdrom_newpc_intr() 679 rq->errors = -EIO; in cdrom_newpc_intr() 1367 rq->errors = ILLEGAL_REQUEST; in ide_cdrom_prep_pc()
|
D | ide-atapi.c | 447 pc->rq->errors++; in ide_pc_intr() 481 rq->errors = 0; in ide_pc_intr() 486 if (rq->errors == 0) in ide_pc_intr() 487 rq->errors = -EIO; in ide_pc_intr()
|
D | ide-taskfile.c | 289 cmd->rq->errors = 0; in ide_pio_datablock() 331 rq->errors = err; in ide_finish_cmd()
|
D | ide-ioctls.c | 229 ret = rq->errors; in generic_drive_reset()
|
D | ide-dma.c | 493 hwif->rq->errors = 0; in ide_dma_timeout_retry()
|
/linux-4.4.14/drivers/md/bcache/ |
D | io.c | 67 unsigned errors; in bch_count_io_errors() local 81 errors = atomic_read(&ca->io_errors); in bch_count_io_errors() 83 old = errors; in bch_count_io_errors() 84 new = ((uint64_t) errors * 127) / 128; in bch_count_io_errors() 85 errors = atomic_cmpxchg(&ca->io_errors, in bch_count_io_errors() 87 } while (old != errors); in bch_count_io_errors() 94 unsigned errors = atomic_add_return(1 << IO_ERROR_SHIFT, in bch_count_io_errors() local 96 errors >>= IO_ERROR_SHIFT; in bch_count_io_errors() 98 if (errors < ca->set->error_limit) in bch_count_io_errors()
|
/linux-4.4.14/Documentation/x86/x86_64/ |
D | machinecheck | 5 by the CPU. Uncorrected errors typically cause a machine check 14 When you see the "Machine check errors logged" message in the system 38 How often to poll for corrected machine check errors, in seconds 45 check errors (but some corrected errors might be still reported 58 0: always panic on uncorrected errors, log corrected errors 59 1: panic or SIGBUS on uncorrected errors, log corrected errors 60 2: SIGBUS or log uncorrected errors, log corrected errors 61 3: never panic or SIGBUS, log all errors (for testing only)
|
D | boot-options.txt | 21 Don't make logs for corrected errors. All events reported 24 of corrected errors. 26 Disable features for corrected errors, e.g. polling timer 30 there is an agent checking/clearing corrected errors 47 0: always panic on uncorrected errors, log corrected errors 48 1: panic or SIGBUS on uncorrected errors, log corrected errors 49 2: SIGBUS or log uncorrected errors, log corrected errors 50 3: never panic or SIGBUS, log all errors (for testing only) 62 errors since we will not see details for all errors. 169 acpi=nocmcff Disable firmware first mode for corrected errors. This
|
/linux-4.4.14/lib/ |
D | crc32.c | 980 int errors = 0; local 1006 errors++; 1018 if (errors) 1019 pr_warn("crc32c: %d self tests failed\n", errors); 1031 int errors = 0, runs = 0; local 1049 errors++; 1055 if (errors) 1056 pr_warn("crc32c_combine: %d/%d self tests failed\n", errors, runs); 1066 int errors = 0; local 1095 errors++; [all …]
|
D | random32.c | 425 int i, j, errors = 0, runs = 0; in prandom_state_selftest() local 453 errors++; in prandom_state_selftest() 459 if (errors) in prandom_state_selftest() 460 pr_warn("prandom: %d/%d self tests failed\n", errors, runs); in prandom_state_selftest()
|
D | Kconfig.kmemcheck | 57 Select the maximum number of errors to store in the queue. Since 58 errors can occur virtually anywhere and in any context, we need a
|
D | Kconfig.kgdb | 109 int "KDB: continue after catastrophic errors"
|
/linux-4.4.14/drivers/macintosh/ |
D | windfarm_pid.c | 47 st->errors[i] = error; in wf_pid_run() 54 st->errors[st->index] = error; in wf_pid_run() 59 integ += st->errors[(st->index + hlen - i) % hlen]; in wf_pid_run() 63 deriv = st->errors[st->index] - in wf_pid_run() 64 st->errors[(st->index + hlen - 1) % hlen]; in wf_pid_run() 102 st->errors[i] = error; in wf_cpu_pid_run() 110 st->errors[st->index] = error; in wf_cpu_pid_run() 117 integ += st->errors[(st->index + hlen - i) % hlen]; in wf_cpu_pid_run()
|
D | windfarm_pid.h | 40 s32 errors[WF_PID_MAX_HISTORY]; /* error history buffer */ member 77 s32 errors[WF_PID_MAX_HISTORY]; /* error history buffer */ member
|
/linux-4.4.14/kernel/ |
D | test_kprobes.c | 26 static int errors, handler_errors, num_tests; variable 352 errors++; in init_test_probes() 357 errors++; in init_test_probes() 362 errors++; in init_test_probes() 367 errors++; in init_test_probes() 373 errors++; in init_test_probes() 378 errors++; in init_test_probes() 381 if (errors) in init_test_probes() 382 pr_err("BUG: %d out of %d tests failed\n", errors, num_tests); in init_test_probes()
|
/linux-4.4.14/Documentation/PCI/ |
D | pcieaer-howto.txt | 33 - Gathers the comprehensive error information if errors occurred. 93 PCI Express errors are classified into two types: correctable errors 94 and uncorrectable errors. This classification is based on the impacts 95 of those errors, which may result in degraded performance or function 98 Correctable errors pose no impacts on the functionality of the 100 intervention or any loss of data. These errors are detected and 101 corrected by hardware. Unlike correctable errors, uncorrectable 102 errors impact functionality of the interface. Uncorrectable errors 105 errors are further classified into non-fatal errors and fatal errors. 106 Non-fatal errors cause the particular transaction to be unreliable, [all …]
|
D | pci-error-recovery.txt | 13 PCI errors on the bus, such as parity errors on the data and address 14 busses, as well as SERR and PERR errors. Some of the more advanced 15 chipsets are able to deal with these errors; these include PCI-E chipsets, 59 bus errors are easy to manage in the device driver. Indeed, most 62 mechanisms for dealing with SCSI bus errors and SCSI bus resets. 199 >>> this callback, errors triggered by them will be returned via 372 errors. See the discussion in powerpc/eeh-pci-error-recovery.txt 374 software errors.
|
/linux-4.4.14/tools/perf/scripts/perl/ |
D | rw-by-pid.pl | 36 $reads{$common_pid}{errors}{$ret}++; 58 $writes{$common_pid}{errors}{$ret}++; 102 foreach my $error (keys %{$reads{$pid}{errors}}) { 104 my $errcount = $reads{$pid}{errors}{$error} || 0; 142 foreach my $error (keys %{$writes{$pid}{errors}}) { 144 my $errcount = $writes{$pid}{errors}{$error} || 0;
|
D | rwtop.pl | 49 $reads{$common_pid}{errors}{$ret}++; 75 $writes{$common_pid}{errors}{$ret}++;
|
/linux-4.4.14/scripts/ |
D | kernel-doc-xml-ref | 38 my $errors = 0; 194 if ($errors) { 195 print STDERR "$errors errors\n"; 198 exit($errors);
|
D | kernel-doc | 193 my $errors = 0; 487 ++$errors; 1838 ++$errors; 1877 ++$errors; 1930 ++$errors; 2447 ++$errors; 2738 if ($verbose && $errors) { 2739 print STDERR "$errors errors\n"; 2745 exit($errors);
|
/linux-4.4.14/tools/testing/selftests/powerpc/mm/ |
D | subpage_prot.c | 35 int errors; variable 80 ++errors; in check_faulted() 119 errors = 0; in run_test() 130 if (errors) { in run_test() 131 printf("%d errors detected\n", errors); in run_test()
|
/linux-4.4.14/drivers/acpi/apei/ |
D | Kconfig | 14 APEI allows to report errors (for example from the chipset) 27 platform hardware errors (such as that from chipset). It 29 errors are reported to firmware firstly, then reported to 39 PCIe AER errors may be reported via APEI firmware first mode. 46 Memory errors may be reported via APEI firmware first mode.
|
/linux-4.4.14/drivers/usb/ |
D | usb-skeleton.c | 61 int errors; /* the last request tanked */ member 154 res = dev->errors ? (dev->errors == -EPIPE ? -EPIPE : -EIO) : 0; in skel_flush() 155 dev->errors = 0; in skel_flush() 179 dev->errors = urb->status; in skel_read_bulk_callback() 271 rv = dev->errors; in skel_read() 274 dev->errors = 0; in skel_read() 351 dev->errors = urb->status; in skel_write_bulk_callback() 393 retval = dev->errors; in skel_write() 396 dev->errors = 0; in skel_write() 644 dev->errors = -EPIPE; in skel_post_reset()
|
/linux-4.4.14/drivers/edac/ |
D | e752x_edac.c | 517 static void do_global_error(int fatal, u32 errors) in do_global_error() argument 522 if (errors & (1 << i)) { in do_global_error() 535 static inline void global_error(int fatal, u32 errors, int *error_found, in global_error() argument 541 do_global_error(fatal, errors); in global_error() 551 static void do_hub_error(int fatal, u8 errors) in do_hub_error() argument 556 if (errors & (1 << i)) in do_hub_error() 562 static inline void hub_error(int fatal, u8 errors, int *error_found, in hub_error() argument 568 do_hub_error(fatal, errors); in hub_error() 608 static void do_nsi_error(int fatal, u32 errors) in do_nsi_error() argument 613 if (errors & (1 << i)) in do_nsi_error() [all …]
|
D | i7300_edac.c | 358 unsigned long errors; in i7300_process_error_global() local 368 errors = error_reg; in i7300_process_error_global() 369 errnum = find_first_bit(&errors, in i7300_process_error_global() 384 errors = error_reg; in i7300_process_error_global() 385 errnum = find_first_bit(&errors, in i7300_process_error_global() 417 unsigned long errors; in i7300_process_fbd_error() local 427 errors = error_reg & FERR_FAT_FBD_ERR_MASK ; in i7300_process_fbd_error() 428 errnum = find_first_bit(&errors, in i7300_process_fbd_error() 450 bank, ras, cas, errors, specific); in i7300_process_fbd_error() 463 errors = error_reg & FERR_NF_FBD_ERR_MASK; in i7300_process_fbd_error() [all …]
|
D | Kconfig | 16 EDAC is designed to report errors in the core system. 17 These are low-level errors that are reported in the CPU or 19 memory errors, cache errors, PCI errors, thermal throttling, etc.. 68 Some systems are able to detect and correct errors in main 71 errors). EDAC will also try to decode where these errors 76 bool "Output ACPI APEI/GHES BIOS detected errors via EDAC" 102 Support for error detection and correction of DRAM ECC errors on 112 errors into DRAM.
|
/linux-4.4.14/drivers/staging/comedi/drivers/ |
D | jr3_pci.c | 121 u16 errors; member 279 u16 errors; in jr3_pci_ai_insn_read() local 285 errors = get_u16(&spriv->channel->errors); in jr3_pci_ai_insn_read() 287 (errors & (watch_dog | watch_dog2 | sensor_change))) { in jr3_pci_ai_insn_read() 458 int errors; in jr3_pci_poll_subdevice() local 465 errors = get_u16(&channel->errors); in jr3_pci_poll_subdevice() 467 if (errors != spriv->errors) in jr3_pci_poll_subdevice() 468 spriv->errors = errors; in jr3_pci_poll_subdevice() 471 if (errors & (watch_dog | watch_dog2 | sensor_change)) in jr3_pci_poll_subdevice() 479 if ((errors & (watch_dog | watch_dog2)) || in jr3_pci_poll_subdevice()
|
D | jr3_pci.h | 555 u32 errors; /* offset 0x00f1 */ member
|
/linux-4.4.14/arch/x86/tools/ |
D | insn_sanity.c | 240 int errors = 0; in main() local 264 errors++; in main() 274 (errors) ? "Failure" : "Success", in main() 277 errors, in main() 280 return errors ? 1 : 0; in main()
|
/linux-4.4.14/block/ |
D | blk-exec.c | 76 rq->errors = -ENXIO; in blk_execute_rq_nowait() 77 __blk_end_request_all(rq, rq->errors); in blk_execute_rq_nowait() 123 if (rq->errors) in blk_execute_rq()
|
D | bsg-lib.c | 59 err = job->req->errors = result; in bsg_job_done() 86 blk_end_request_all(rq, rq->errors); in bsg_softirq_done() 181 req->errors = ret; in bsg_request_fn()
|
D | scsi_ioctl.c | 259 hdr->status = rq->errors & 0xff; in blk_complete_sghdr_rq() 260 hdr->masked_status = status_byte(rq->errors); in blk_complete_sghdr_rq() 261 hdr->msg_status = msg_byte(rq->errors); in blk_complete_sghdr_rq() 262 hdr->host_status = host_byte(rq->errors); in blk_complete_sghdr_rq() 263 hdr->driver_status = driver_byte(rq->errors); in blk_complete_sghdr_rq() 509 err = rq->errors & 0xff; /* only 8 bit SCSI status */ in sg_scsi_ioctl()
|
D | bsg.c | 398 dprintk("rq %p bio %p 0x%x\n", rq, bio, rq->errors); in blk_complete_sgv4_hdr_rq() 402 hdr->device_status = rq->errors & 0xff; in blk_complete_sgv4_hdr_rq() 403 hdr->transport_status = host_byte(rq->errors); in blk_complete_sgv4_hdr_rq() 404 hdr->driver_status = driver_byte(rq->errors); in blk_complete_sgv4_hdr_rq() 438 if (!ret && rq->errors < 0) in blk_complete_sgv4_hdr_rq() 439 ret = rq->errors; in blk_complete_sgv4_hdr_rq()
|
D | blk-mq.c | 190 rq->errors = 0; in blk_mq_rq_ctx_init() 366 blk_mq_end_request(rq, rq->errors); in __blk_mq_complete_request() 386 rq->errors = error; in blk_mq_complete_request() 541 rq->errors = -EIO; in blk_mq_abort_requeue_list() 542 blk_mq_end_request(rq, rq->errors); in blk_mq_abort_requeue_list() 789 rq->errors = -EIO; in __blk_mq_run_hw_queue() 790 blk_mq_end_request(rq, rq->errors); in __blk_mq_run_hw_queue() 1229 rq->errors = -EIO; in blk_mq_direct_issue_request() 1230 blk_mq_end_request(rq, rq->errors); in blk_mq_direct_issue_request()
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | debugfs-pfo-nx-crypto | 13 errors: 14 - A u32 providing a total count of errors since the driver was loaded. The 15 only errors counted here are those returned from the hcall, H_COP_OP.
|
D | sysfs-devices-edac | 5 counters for UE and CE errors on the given memory controller. 8 computing errors/time. Since the counters are always reset 35 errors that have occurred on this memory controller. If 44 which DIMM slot is having errors. 50 errors that have occurred on this memory controller. This 61 information as to which DIMM slot is having errors. Memory is 117 to it. With this label in the module, when errors occur
|
D | sysfs-class-net-statistics | 59 Indicates the number of receive FIFO errors seen by this 69 alignment errors. Note that the specific meaning depends on 136 because of carrier errors (e.g: physical link down). See the 181 reported as heartbeat errors. See the driver for the exact 201 late collisions errors.
|
D | sysfs-class-mtd | 130 Maximum number of bit errors that the device is capable of 143 maximum number of bit errors that were corrected on any single 156 interpreted to mean simply "one or more bit errors were 158 dangerously high number of bit errors were corrected on one or
|
D | sysfs-memory-page-offline | 33 triggering IO errors if needed. Note this may kill
|
D | sysfs-ata | 106 Number of time libata decided to lower the speed of link due to errors.
|
/linux-4.4.14/tools/testing/selftests/rcutorture/bin/ |
D | parse-build.sh | 47 print_bug $title build errors: 58 print_warning $title build errors:
|
/linux-4.4.14/arch/um/drivers/ |
D | pcap_user.c | 20 char errors[PCAP_ERRBUF_SIZE]; in pcap_user_init() local 23 pri->promisc, 0, errors); in pcap_user_init() 26 "'%s'\n", errors); in pcap_user_init()
|
/linux-4.4.14/drivers/staging/lustre/lnet/selftest/ |
D | ping_test.c | 76 int errors; in ping_client_fini() local 81 errors = atomic_read(&sn->sn_ping_errors); in ping_client_fini() 82 if (errors) in ping_client_fini() 83 CWARN("%d pings have failed.\n", errors); in ping_client_fini()
|
/linux-4.4.14/Documentation/networking/ |
D | xfrm_proc.txt | 16 All errors which is not matched others 50 Outbound errors 53 All errors which is not matched others
|
D | cops.txt | 44 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 45 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 coll:0
|
D | altera_tse.txt | 88 Ethtool is supported. Driver statistics and internal errors can be taken using: 141 received. This count does not include any error packets such as CRC errors, 142 length errors, or alignment errors. 171 a count of the number of packets received containing errors that prevented the 175 is a count of the number of packets that could not be transmitted due to errors.
|
D | ixgb.txt | 188 behavior after modifying this register may be undefined (possibly errors of 342 Excessive CRC errors may be observed if the Intel(R) PRO/10GbE CX4 345 The CRC errors may be received either by the Intel(R) PRO/10GbE CX4 352 Excessive CRC errors may be observed if the Intel(R) PRO/10GbE CX4 Server 357 Excessive CRC errors may be observed using Fujitsu 24AWG cable assemblies that 359 errors may be received either by the CX4 Server adapter or at the switch. If
|
D | 3c509.txt | 150 If an EtherLink III appears to transmit packets, but the "Tx carrier errors" 203 error is mixed with 0x82 errors it is the result of a host incorrectly set 206 Both of these errors are the result of network problems that should be
|
D | netif-msg.txt | 21 0 Minimal messages, only essential information on fatal errors.
|
D | rds.txt | 138 ENOBUFS errors returned by sendmsg. 295 then maintained forever -- if there are transport errors, the 333 no errors, call rds_ib_process_recv()
|
D | can.txt | 227 ECUs. The occurrence of detected errors are important for diagnosis 236 errors may be selected. The reception of error messages is disabled 516 errors are divided into different error classes that may be filtered 1060 re-started bus-errors arbit-lost error-warn error-pass bus-off 1062 RX: bytes packets errors dropped overrun mcast 1064 TX: bytes packets errors dropped carrier collsns 1107 "re-started bus-errors arbit-lost error-warn error-pass bus-off" 1108 Shows the number of restarts, bus and arbitration lost errors, 1110 bus-off state. RX overrun errors are listed in the "overrun" 1150 A device may enter the "bus-off" state if too many errors occurred on
|
D | igb.txt | 86 for "other" interrupts such as link status change and errors. All
|
/linux-4.4.14/drivers/pci/pcie/aer/ |
D | Kconfig.debug | 14 to trigger various real hardware errors. Software based 15 error injection can fake almost all kinds of errors with the
|
/linux-4.4.14/include/trace/events/ |
D | block.h | 74 __field( int, errors ) 85 __entry->errors = rq->errors; 95 __entry->nr_sector, __entry->errors) 154 __field( int, errors ) 163 __entry->errors = rq->errors; 173 __entry->nr_sector, __entry->errors)
|
/linux-4.4.14/drivers/scsi/device_handler/ |
D | scsi_dh_hp_sw.c | 133 HP_SW_NAME, req->errors); in hp_sw_tur() 200 if (error || host_byte(req->errors) != DID_OK || in start_stop_endio() 201 msg_byte(req->errors) != COMMAND_COMPLETE) { in start_stop_endio() 204 HP_SW_NAME, req->errors); in start_stop_endio()
|
D | scsi_dh_alua.c | 161 ALUA_DH_NAME, rq->errors); in submit_vpd_inquiry() 204 ALUA_DH_NAME, rq->errors); in submit_rtpg() 228 if (host_byte(req->errors) != DID_OK || in stpg_endio() 229 msg_byte(req->errors) != COMMAND_COMPLETE) { in stpg_endio()
|
D | scsi_dh_emc.c | 336 rq->errors); in send_inquiry_cmd() 386 CLARIION_NAME, rq->errors); in send_trespass_cmd()
|
/linux-4.4.14/drivers/net/fddi/skfp/ |
D | pcmplc.c | 1080 u_long errors ; in lem_evaluate() local 1090 errors = inpw(PLC(((int) phy->np),PL_LINK_ERR_CTR)) ; in lem_evaluate() 1091 lem->lem_errors += errors ; in lem_evaluate() 1092 mib->fddiPORTLem_Ct += errors ; in lem_evaluate() 1094 errors = lem->lem_errors ; in lem_evaluate() 1105 if (!errors) ber = 15 ; in lem_evaluate() 1106 else if (errors <= 9) ber = 9 ; in lem_evaluate() 1107 else if (errors <= 99) ber = 8 ; in lem_evaluate() 1108 else if (errors <= 999) ber = 7 ; in lem_evaluate() 1109 else if (errors <= 9999) ber = 6 ; in lem_evaluate() [all …]
|
/linux-4.4.14/drivers/video/fbdev/omap2/dss/ |
D | dispc-compat.c | 337 u32 errors; in dispc_error_worker() local 347 errors = dispc_compat.error_irqs; in dispc_error_worker() 360 if (bit & errors) { in dispc_error_worker() 375 if (bit & errors) { in dispc_error_worker() 397 if (errors & DISPC_IRQ_OCP_ERR) { in dispc_error_worker() 408 dispc_compat.irq_error_mask |= errors; in dispc_error_worker()
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/dvm/ |
D | rxon.c | 781 u32 errors = 0; in iwl_check_rxon_cmd() local 786 errors |= BIT(0); in iwl_check_rxon_cmd() 790 errors |= BIT(1); in iwl_check_rxon_cmd() 795 errors |= BIT(2); in iwl_check_rxon_cmd() 799 errors |= BIT(3); in iwl_check_rxon_cmd() 804 errors |= BIT(4); in iwl_check_rxon_cmd() 811 errors |= BIT(5); in iwl_check_rxon_cmd() 816 errors |= BIT(6); in iwl_check_rxon_cmd() 822 errors |= BIT(7); in iwl_check_rxon_cmd() 828 errors |= BIT(8); in iwl_check_rxon_cmd() [all …]
|
/linux-4.4.14/Documentation/acpi/apei/ |
D | einj.txt | 67 write should be the last step when injecting errors. 114 in controlling where the errors are injected. Your BIOS may support an 121 the target of the injection. For processor-related errors (type 0x1, 0x2 131 For memory errors (type 0x8, 0x10 and 0x20) the address is set using 133 express errors (type 0x40, 0x80 and 0x100) the segment, bus, device and 144 An ACPI 5.0 BIOS may also allow vendor-specific errors to be injected. 158 # cat available_error_type # See which errors can be injected
|
/linux-4.4.14/drivers/block/drbd/ |
D | Kconfig | 47 Say Y here if you want to simulate IO errors, in order to test DRBD's 50 The actual simulation of IO errors is done by writing 3 values to 68 Example: Simulate data write errors on /dev/drbd0 with a probability of 5%.
|
/linux-4.4.14/Documentation/ |
D | edac.txt | 11 The 'edac' kernel module's goal is to detect and report hardware errors 18 primary errors being harvested. These types of errors are harvested by 51 in order to determine if errors are occurring during data transfers. 53 The presence of PCI Parity errors must be examined with a grain of salt. 225 errors that have occurred on this csrow. If panic_on_ue is set 235 errors that have occurred on this csrow. This count is very 303 to it. With this label in the module, when errors occur 336 to it. With this label in the module, when errors occur 353 information indicating that errors have been detected: 417 This attribute file will display the number of parity errors that [all …]
|
D | digsig.txt | 17 memory allocation errors handling, has been refactored according to kernel 18 coding style, and checkpatch.pl reported errors and warnings have been fixed.
|
D | bad_memory.txt | 37 Example: memtest86+ reported here errors at address 0x18691458, 0x18698424 and
|
D | SubmitChecklist | 17 =n. No gcc warnings/errors, no linker warnings/errors.
|
D | bcache.txt | 33 from disk or invalidating cache entries. For unrecoverable errors (meta data 110 Bcache tries to transparently handle IO errors to/from the cache device without 111 affecting normal operation; if it sees too many errors (the threshold is 118 - For writethrough writes, if the write to the cache errors we just switch to 348 These determines how many errors we accept before disabling the cache. 431 Number of errors that have occurred, decayed by io_error_halflife.
|
D | kmemcheck.txt | 17 4. Reporting errors 33 programmer errors that the compiler is not able to find through static 131 (fixed-size) buffer. Since errors can occur virtually anywhere and in 138 than 64 errors within an irqs-off section, then the code is likely to 171 some real errors, but disabling it would probably produce a lot of 651 ability to find (real) errors in other parts of the same struct. 693 4. Reporting errors 698 maintainers. Instead, I encourage maintainers and developers to find errors
|
D | applying-patches.txt | 87 except for errors which is nice to prevent errors from scrolling out of the 93 Common errors when patching 177 As I already mentioned above, these errors should never happen if you apply 179 So if you get these errors with kernel.org patches then you should probably
|
D | DMA-API.txt | 284 a mapping. A driver can check for these errors by testing the returned 625 errors will only silently counted. This limitation exist to prevent the code 645 numbers of errors found. 669 all errors again. 679 driver filter at boot time. The debug code will only print errors for that 691 to check DMA mapping errors on addresses returned by dma_map_single() and
|
D | Intel-IOMMU.txt | 70 When errors are reported, the DMA engine signals via an interrupt. The fault
|
D | md.txt | 378 should be replaced, either due to errors or 407 errors 408 An approximate count of read errors that have been detected on 532 performing 'resync', md will count the number of errors that are 536 than sectors, this may be larger than the number of actual errors
|
/linux-4.4.14/arch/mips/math-emu/ |
D | dsemul.c | 89 MIPS_FPU_EMU_INC_STATS(errors); in mips_dsemul() 135 MIPS_FPU_EMU_INC_STATS(errors); in do_dsemulret()
|
D | cp1emu.c | 1057 MIPS_FPU_EMU_INC_STATS(errors); in cop1Emulate() 1062 MIPS_FPU_EMU_INC_STATS(errors); in cop1Emulate() 1075 MIPS_FPU_EMU_INC_STATS(errors); in cop1Emulate() 1080 MIPS_FPU_EMU_INC_STATS(errors); in cop1Emulate() 1091 MIPS_FPU_EMU_INC_STATS(errors); in cop1Emulate() 1096 MIPS_FPU_EMU_INC_STATS(errors); in cop1Emulate() 1109 MIPS_FPU_EMU_INC_STATS(errors); in cop1Emulate() 1114 MIPS_FPU_EMU_INC_STATS(errors); in cop1Emulate() 1479 MIPS_FPU_EMU_INC_STATS(errors); in fpux_emu() 1484 MIPS_FPU_EMU_INC_STATS(errors); in fpux_emu() [all …]
|
D | me-debugfs.c | 58 FPU_STAT_CREATE(errors); in debugfs_fpuemu()
|
/linux-4.4.14/Documentation/filesystems/ |
D | jfs.txt | 29 errors=continue Keep going on a filesystem error. 30 errors=remount-ro(*) Remount the filesystem read-only on an error. 31 errors=panic Panic and halt the machine if an error occurs.
|
D | hpfs.txt | 38 errors=continue,remount-ro,panic (default remount-ro) 39 Behaviour when filesystem errors found. 40 chkdsk=no,errors,always (default errors) 120 again :-). chkdsk happily ignores these errors and only low-level disk 144 driver allows you to do it. chkdsk ignores such errors.
|
D | ocfs2.txt | 44 errors=remount-ro(*) Remount the filesystem read-only on an error. 45 errors=panic Panic and halt the machine if an error occurs.
|
D | nilfs2.txt | 54 errors=continue Keep going on a filesystem error. 55 errors=remount-ro(*) Remount the filesystem read-only on an error. 56 errors=panic Panic and halt the machine if an error occurs.
|
D | xfs-self-describing-metadata.txt | 23 manual task of verifying that things like single bit errors or misplaced writes 56 ensure that common types of errors are easily detectable. Hence the concept of 83 hence a 32 bit CRC is more than sufficient to detect multi-bit errors in 166 error (same as for IO errors), and if it needs to take special action due to a 169 error numbers for different errors as necessary.
|
D | gfs2-uevents.txt | 56 The OFFLINE uevent is only generated due to filesystem errors and is used
|
/linux-4.4.14/Documentation/ide/ |
D | ChangeLog.ide-cd.1994-2004 | 32 * of ATAPI errors. 55 * Suppress printing normal unit attention errors and 56 * some drive not ready errors. 67 * Fix handling of errors occurring before the 140 * Fix errors on CDROMSTOP (If you have a "Dolphin", 168 * removed this support because it produced errors. 169 * It produced errors _only_ for non-writers. duh. 234 * sense errors are handled. 247 * - Stop spewing errors to log when magicdev polls with
|
D | ChangeLog.ide-tape.1995-2002 | 185 * 1 : 0+output errors only 195 * errors from 100 to 1000 in idetape_get_logical_blk 243 * cause DMA errors.
|
D | ChangeLog.ide-floppy.1996-2002 | 35 * errors in syslog. The culprit is
|
/linux-4.4.14/fs/btrfs/ |
D | compression.c | 71 int errors; member 161 cb->errors = 1; in end_compressed_bio_read() 186 cb->errors = 1; in end_compressed_bio_read() 197 if (cb->errors) { in end_compressed_bio_read() 234 if (cb->errors) in end_compressed_writeback() 247 if (cb->errors) in end_compressed_writeback() 275 cb->errors = 1; in end_compressed_bio_write() 349 cb->errors = 0; in btrfs_submit_compressed_write() 603 cb->errors = 0; in btrfs_submit_compressed_read()
|
D | btrfs_inode.h | 293 int errors; member
|
D | transaction.c | 970 bool errors = false; in btrfs_wait_marked_extents() local 1003 errors = true; in btrfs_wait_marked_extents() 1008 errors = true; in btrfs_wait_marked_extents() 1012 errors = true; in btrfs_wait_marked_extents() 1015 if (errors && !werr) in btrfs_wait_marked_extents()
|
/linux-4.4.14/drivers/acpi/ |
D | bus.c | 224 u32 errors; in acpi_run_osc() local 264 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0); in acpi_run_osc() 265 if (errors) { in acpi_run_osc() 266 if (errors & OSC_REQUEST_ERROR) in acpi_run_osc() 269 if (errors & OSC_INVALID_UUID_ERROR) in acpi_run_osc() 272 if (errors & OSC_INVALID_REVISION_ERROR) in acpi_run_osc() 275 if (errors & OSC_CAPABILITIES_MASK_ERROR) { in acpi_run_osc()
|
/linux-4.4.14/drivers/block/ |
D | nbd.c | 115 int error = req->errors ? -EIO : 0; in nbd_end_request() 367 req->errors++; in nbd_read_stat() 381 req->errors++; in nbd_read_stat() 480 req->errors++; in nbd_clear_que() 488 req->errors++; in nbd_clear_que() 507 req->errors = 0; in nbd_handle_req() 524 req->errors++; in nbd_handle_req() 539 req->errors++; in nbd_handle_req() 623 req->errors++; in nbd_request_handler()
|
D | hd.c | 421 if (++req->errors >= MAX_ERRORS || (hd_error & BBD_ERR)) { in bad_rw_intr() 424 } else if (req->errors % RESET_FREQ == 0) in bad_rw_intr() 426 else if ((hd_error & TRK0_ERR) || req->errors % RECAL_FREQ == 0) in bad_rw_intr() 544 if (++hd_req->errors >= MAX_ERRORS) { in hd_times_out()
|
D | virtio_blk.c | 126 req->errors = virtio32_to_cpu(vblk->vdev, vbr->in_hdr.errors); in virtblk_request_done() 128 req->errors = (error != 0); in virtblk_request_done() 147 blk_mq_complete_request(vbr->req, vbr->req->errors); in virtblk_done()
|
D | cciss.c | 1865 blk_end_request_all(rq, (rq->errors == 0) ? 0 : -EIO); in cciss_softirq_done() 3143 rq->errors = 0; in complete_command() 3146 rq->errors = make_status_bytes(0, 0, 0, DRIVER_TIMEOUT); in complete_command() 3153 rq->errors = evaluate_target_status(h, cmd, &retry_cmd); in complete_command() 3172 rq->errors = make_status_bytes(SAM_STAT_GOOD, in complete_command() 3180 rq->errors = make_status_bytes(SAM_STAT_GOOD, in complete_command() 3188 rq->errors = make_status_bytes(SAM_STAT_GOOD, in complete_command() 3196 rq->errors = make_status_bytes(SAM_STAT_GOOD, in complete_command() 3204 rq->errors = make_status_bytes(SAM_STAT_GOOD, in complete_command() 3212 rq->errors = make_status_bytes(SAM_STAT_GOOD, in complete_command() [all …]
|
D | ataflop.c | 620 fd_request->errors++; in fd_error() 621 if (fd_request->errors >= MAX_ERRORS) { in fd_error() 625 else if (fd_request->errors == RECALIBRATE_ERRORS) { in fd_error() 1389 read_track = (ReqCmd == READ && fd_request->errors == 0); in setup_req_params()
|
/linux-4.4.14/drivers/cpufreq/ |
D | pcc-cpufreq.c | 308 u32 errors; in pcc_cpufreq_do_osc() local 341 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0); in pcc_cpufreq_do_osc() 342 if (errors) { in pcc_cpufreq_do_osc() 370 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0); in pcc_cpufreq_do_osc() 371 if (errors) { in pcc_cpufreq_do_osc()
|
/linux-4.4.14/drivers/staging/media/omap4iss/ |
D | TODO | 3 * Fix checkpatch errors and warnings
|
/linux-4.4.14/drivers/spi/ |
D | spi-davinci.c | 523 u32 buf, status, errors = 0, spidat1; in davinci_spi_process_events() local 535 errors = status & SPIFLG_ERROR_MASK; in davinci_spi_process_events() 548 return errors; in davinci_spi_process_events() 585 u32 errors = 0; in davinci_spi_bufs() local 709 errors = davinci_spi_process_events(dspi); in davinci_spi_bufs() 710 if (errors) in davinci_spi_bufs() 734 if (errors) { in davinci_spi_bufs() 735 ret = davinci_spi_check_error(dspi, errors); in davinci_spi_bufs()
|
/linux-4.4.14/Documentation/device-mapper/ |
D | dm-flakey.txt | 26 <down interval>: Number of seconds device returns errors. 30 unreliability, all I/O returns errors.
|
D | zero.txt | 36 to this device, it will start returning I/O errors.
|
D | snapshot.txt | 40 useless and be disabled, returning errors. So it is important to monitor 111 --refresh); but if it is left active it will simply return I/O errors.
|
/linux-4.4.14/fs/jfs/ |
D | super.c | 294 char *errors = args[0].from; in parse_options() local 295 if (!errors || !*errors) in parse_options() 297 if (!strcmp(errors, "continue")) { in parse_options() 301 } else if (!strcmp(errors, "remount-ro")) { in parse_options() 305 } else if (!strcmp(errors, "panic")) { in parse_options() 311 errors); in parse_options()
|
/linux-4.4.14/drivers/mtd/nand/ |
D | fsl_ifc_nand.c | 283 int errors; in check_read_ecc() local 285 errors = (reg >> ((3 - bufnum % 4) * 8)) & 15; in check_read_ecc() 287 return errors; in check_read_ecc() 333 int errors; in fsl_ifc_run_command() local 342 errors = check_read_ecc(mtd, ctrl, eccstat, i); in fsl_ifc_run_command() 344 if (errors == 15) { in fsl_ifc_run_command() 359 mtd->ecc_stats.corrected += errors; in fsl_ifc_run_command() 362 errors); in fsl_ifc_run_command()
|
D | omap_elm.c | 292 int i, j, errors = 0; in elm_error_correction() local 323 errors += err_vec[i].error_count; in elm_error_correction()
|
/linux-4.4.14/Documentation/powerpc/ |
D | eeh-pci-error-recovery.txt | 16 hardware features allow PCI bus errors to be cleared and a PCI 23 Another "traditional" technique is to ignore such errors, which 27 reliable and robust by protecting it from PCI errors, and giving 38 electrical connections. The vast majority of EEH errors seen in 49 years. Other possible causes of EEH errors include data or 50 address line parity errors (for example, due to poor electrical 52 errors (due to software, device firmware, or device PCI hardware bugs). 60 and recover from EEH errors will be presented. This is followed 314 Reiserfs does not tolerate errors returned from the block device.
|
/linux-4.4.14/include/linux/ |
D | slab_def.h | 54 unsigned long errors; member
|
/linux-4.4.14/Documentation/devicetree/bindings/memory-controllers/ |
D | synopsys.txt | 5 two bit errors.
|
/linux-4.4.14/arch/mips/include/asm/ |
D | fpu_emulator.h | 41 unsigned long errors; member
|
/linux-4.4.14/include/uapi/linux/ |
D | virtio_blk.h | 138 __virtio32 errors; member
|
/linux-4.4.14/Documentation/ia64/ |
D | err_inject.txt | 6 errors from Linux. The tool is a test bed for IPF MC work flow including 14 provides a combination of various errors and calls the driver's interface 15 (sysfs interface) to inject errors or query error injection capabilities. 29 this sample application to inject errors. 49 #On cpu2, inject only total 0x10 errors, interval 5 seconds 54 #On cpu4, inject and consume total 0x10 errors, interval 5 seconds 59 #On cpu15, inject and consume total 0x10 errors, interval 5 seconds 830 /* Create a shm segment which will be used to inject/consume errors on.*/ 961 printf("\t-i: inject errors. default: off\n"); 978 printf("input to inject single or multiple errors "); [all …]
|
/linux-4.4.14/arch/x86/math-emu/ |
D | Makefile | 12 C_OBJS =fpu_entry.o errors.o \
|
/linux-4.4.14/Documentation/scsi/ |
D | ufs.txt | 116 Error handling module handles Host controller fatal errors, 117 Device fatal errors and UIC interconnect layer related errors.
|
D | ChangeLog.ips | 117 errors if an error occurs while trying to read/write 120 - Fixed read/write errors when the adapter is using an
|
D | aic7xxx.txt | 169 10 errors are reported to the user. These errors are 172 problem, continuing to report the errors just degrades 221 Definition: Toggles the detection of PCI parity errors. 226 errors and real parity errors. The symptom of
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/ |
D | pamu.txt | 23 is for PAMU hardware errors, such as PAMU operation errors 24 and ECC errors.
|
/linux-4.4.14/arch/powerpc/platforms/powernv/ |
D | Makefile | 11 obj-$(CONFIG_MEMORY_FAILURE) += opal-memory-errors.o
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-data.txt | 35 Be more verbose (show counter open errors, etc).
|
/linux-4.4.14/Documentation/fault-injection/ |
D | notifier-error-inject.txt | 4 Notifier error injection provides the ability to inject artificial errors to 17 injecting artificial errors to CPU notifier chain callbacks.
|
D | fault-injection.txt | 20 injects futex deadlock and uaddr fault errors. 24 injects disk IO errors on devices permitted by setting 30 injects MMC data errors on devices permitted by setting 251 echo "Injecting errors into the module $module... (interrupt to stop)"
|
/linux-4.4.14/fs/fat/ |
D | misc.c | 33 if (opts->errors == FAT_ERRORS_PANIC) in __fat_fs_error() 35 else if (opts->errors == FAT_ERRORS_RO && !(sb->s_flags & MS_RDONLY)) { in __fat_fs_error()
|
D | inode.c | 909 if (opts->errors == FAT_ERRORS_CONT) in fat_show_options() 911 else if (opts->errors == FAT_ERRORS_PANIC) in fat_show_options() 1052 opts->errors = FAT_ERRORS_RO; in parse_options() 1159 opts->errors = FAT_ERRORS_CONT; in parse_options() 1162 opts->errors = FAT_ERRORS_PANIC; in parse_options() 1165 opts->errors = FAT_ERRORS_RO; in parse_options()
|
/linux-4.4.14/drivers/xen/ |
D | xen-scsiback.c | 260 static void scsiback_print_status(char *sense_buffer, int errors, in scsiback_print_status() argument 267 pending_req->cmnd[0], status_byte(errors), msg_byte(errors), in scsiback_print_status() 268 host_byte(errors), driver_byte(errors)); in scsiback_print_status() 371 int errors; in scsiback_cmd_done() local 375 errors = pending_req->result; in scsiback_cmd_done() 377 if (errors && log_print_stat) in scsiback_cmd_done() 378 scsiback_print_status(sense_buffer, errors, pending_req); in scsiback_cmd_done() 381 scsiback_do_resp_with_sense(sense_buffer, errors, resid, pending_req); in scsiback_cmd_done()
|
/linux-4.4.14/drivers/md/ |
D | dm-mpath.c | 1140 static void pg_init_done(void *data, int errors) in pg_init_done() argument 1149 switch (errors) { in pg_init_done() 1154 errors = 0; in pg_init_done() 1158 "Error %d.", m->hw_handler_name, errors); in pg_init_done() 1178 errors = 0; in pg_init_done() 1190 if (errors) { in pg_init_done() 1192 DMERR("Could not failover device. Error %d.", errors); in pg_init_done() 1266 if (!error && !clone->errors) in do_end_io()
|
/linux-4.4.14/drivers/staging/iio/Documentation/ |
D | sysfs-bus-iio-ad7192 | 8 alternate cycles, to eliminate DC errors.
|
/linux-4.4.14/Documentation/video4linux/bttv/ |
D | PROBLEMS | 55 You will always get pixel errors when e.g. using more than 1 card in full 59 - Some S3 cards and the Matrox Mystique will produce pixel errors with
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | mvebu-audio.txt | 16 the data flow, and the second for errors.
|
/linux-4.4.14/drivers/crypto/nx/ |
D | nx_debugfs.c | 83 dfs->dfs_root, (u32 *)&drv->stats.errors); in nx_debugfs_init()
|
D | nx.h | 73 atomic_t errors; member
|
/linux-4.4.14/Documentation/locking/ |
D | locktorture.txt | 106 high-level errors and reports from the main 'torture' 126 (E): true/false values if there were errors acquiring the lock. This should 145 checked for such errors. The "rmmod" command forces a "SUCCESS",
|
D | ww-mutex-design.txt | 323 Some of the errors which will be warned about: 336 - Normal lockdep errors that can result in deadlocks. 338 Some of the lockdep errors that can result in deadlocks:
|
/linux-4.4.14/Documentation/devicetree/bindings/mtd/ |
D | nand.txt | 17 errors per {size} bytes".
|
/linux-4.4.14/drivers/media/platform/vivid/ |
D | Kconfig | 18 Error injection is supported to test rare errors that are hard
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | fault_injection.txt | 4 Fault injection is a method for forcing errors that may not normally occur, or 5 may be difficult to reproduce. Forcing these errors in a controlled environment
|
/linux-4.4.14/Documentation/cdrom/ |
D | ide-cd | 152 this are Sony and Toshiba drives. You will get errors if you try to 172 In most cases, you should probably check with `dmesg' for any errors 202 errors with a status value of 0xff. 221 b. Timeout/IRQ errors. 223 - If you always get timeout errors, interrupts from the drive are 276 - If you get errors from mount, it may help to check `dmesg' to see 277 if there are any more specific errors from the driver or from the 289 not ISO 9660 or has errors in the filesystem structure). 291 - If you see `not a block device' errors, check that the definitions
|
/linux-4.4.14/drivers/staging/media/mn88473/ |
D | TODO | 10 * I2C errors
|
/linux-4.4.14/drivers/staging/media/mn88472/ |
D | TODO | 10 * I2C errors
|
/linux-4.4.14/drivers/net/can/ |
D | sun4i_can.c | 297 u32 errors; in sun4ican_get_berr_counter() local 306 errors = readl(priv->base + SUN4I_REG_ERRC_ADDR); in sun4ican_get_berr_counter() 308 bec->txerr = errors & 0xFF; in sun4ican_get_berr_counter() 309 bec->rxerr = (errors >> 16) & 0xFF; in sun4ican_get_berr_counter()
|
/linux-4.4.14/scripts/genksyms/ |
D | genksyms.c | 50 static int errors; variable 682 errors++; in export_symbol() 725 errors++; in error_with_pos() 874 return errors != 0; in main()
|
/linux-4.4.14/Documentation/dmaengine/ |
D | dmatest.txt | 80 dmatest: result dma0chan0-copy0: #1: No errors with src_off=0x7bf dst_off=0x8ad len=0x3fea (0) 82 The message format is unified across the different types of errors. A number in
|
/linux-4.4.14/arch/blackfin/ |
D | Kconfig.debug | 39 bool "Try to make Hardware errors exact" 42 By default, the Blackfin hardware errors are not exact - the error 45 signal to be killed. If you are getting HW errors in your system, 95 catching common programming errors such as NULL pointer dereferences.
|
/linux-4.4.14/drivers/mtd/ |
D | rfd_ftl.c | 85 int errors; member 134 part->errors = 1; in build_block_map() 228 part->errors = 1; in scan_header() 786 else if (part->errors) { in rfd_ftl_add_mtd()
|
/linux-4.4.14/net/decnet/ |
D | TODO | 17 o Verify errors etc. against POSIX 1003.1g (draft)
|
/linux-4.4.14/samples/pktgen/ |
D | README.rst | 16 across the sample scripts. Usage example is printed on errors::
|
/linux-4.4.14/drivers/infiniband/hw/qib/ |
D | qib_sd7220.c | 888 int cnt, sofar, req, idx, errors; in qib_sd7220_prog_vfy() local 891 errors = 0; in qib_sd7220_prog_vfy() 906 ++errors; in qib_sd7220_prog_vfy() 910 return errors ? -errors : sofar; in qib_sd7220_prog_vfy()
|
/linux-4.4.14/Documentation/hwmon/ |
D | w83l785ts | 36 and cause read errors. Or maybe the W83L785TS-S chip is simply unreliable,
|
/linux-4.4.14/drivers/scsi/osd/ |
D | Kconfig | 38 errors that might be regularly returned for some filesystem
|
/linux-4.4.14/arch/m68k/ifpsp060/ |
D | CHANGES | 78 For instruction read access errors, the info stacked is: 100 For data read/write access errors, the info stacked is:
|
/linux-4.4.14/drivers/dma/xilinx/ |
D | xilinx_vdma.c | 849 u32 errors = status & XILINX_VDMA_DMASR_ALL_ERR_MASK; in xilinx_vdma_irq_handler() local 851 errors & XILINX_VDMA_DMASR_ERR_RECOVER_MASK); in xilinx_vdma_irq_handler() 854 (errors & ~XILINX_VDMA_DMASR_ERR_RECOVER_MASK)) { in xilinx_vdma_irq_handler() 857 chan, errors, in xilinx_vdma_irq_handler()
|
/linux-4.4.14/Documentation/isdn/ |
D | README.pcbit | 28 - The driver often triggers errors in the board that I and the
|
/linux-4.4.14/drivers/usb/gadget/udc/ |
D | fsl_udc_core.c | 1598 int errors = 0; in process_ep_req() local 1612 errors = hc32_to_cpu(curr_td->size_ioc_sts); in process_ep_req() 1613 if (errors & DTD_ERROR_MASK) { in process_ep_req() 1614 if (errors & DTD_STATUS_HALTED) { in process_ep_req() 1615 ERR("dTD error %08x QH=%d\n", errors, pipe); in process_ep_req() 1618 tmp &= ~errors; in process_ep_req() 1625 if (errors & DTD_STATUS_DATA_BUFF_ERR) { in process_ep_req() 1629 } else if (errors & DTD_STATUS_TRANSACTION_ERR) { in process_ep_req() 1635 errors); in process_ep_req()
|
D | mv_udc_core.c | 135 u32 errors; in process_ep_req() local 152 errors = curr_dtd->size_ioc_sts & DTD_ERROR_MASK; in process_ep_req() 153 if (!errors) { in process_ep_req() 172 errors); in process_ep_req() 173 if (errors & DTD_STATUS_HALTED) { in process_ep_req() 175 curr_dqh->size_ioc_int_sts &= ~errors; in process_ep_req() 177 } else if (errors & DTD_STATUS_DATA_BUFF_ERR) { in process_ep_req() 179 } else if (errors & DTD_STATUS_TRANSACTION_ERR) { in process_ep_req() 2004 udc->errors++; in irq_process_error()
|
D | mv_udc.h | 207 int errors; member
|
D | mv_u3d.h | 274 unsigned int errors; member
|
D | fsl_qe_udc.h | 344 u32 errors; /* USB ERRORs count */ member
|
/linux-4.4.14/Documentation/video4linux/ |
D | si470x.txt | 104 Increase tune_timeout, if you often get -EIO errors. 108 If you get any errors from snd_usb_audio, please report them to the ALSA people.
|
/linux-4.4.14/Documentation/sound/oss/ |
D | PSS | 17 get IRQ errors be sure to check the interrupt is set to
|
D | VIBRA16 | 11 to setup because the kernel reported a lot of DMA errors and wouldn't
|
/linux-4.4.14/kernel/gcov/ |
D | Kconfig | 50 which are not linked to the kernel image to prevent linker errors.
|
/linux-4.4.14/Documentation/block/ |
D | request.txt | 51 int errors DB Error counts
|
/linux-4.4.14/drivers/bluetooth/ |
D | Kconfig | 132 communication may have bit errors, overrun errors or burst 133 errors and thereby making CTS/RTS lines unnecessary.
|
/linux-4.4.14/drivers/staging/lustre/include/linux/lnet/ |
D | types.h | 244 __u32 errors; member
|
D | lnetst.h | 503 __u32 errors; member
|
/linux-4.4.14/drivers/usb/misc/ |
D | usbtest.c | 1823 unsigned long errors; member 1838 ctx->errors += urb->error_count; in complicated_callback() 1840 ctx->errors += (ctx->is_iso ? urb->number_of_packets : 1); in complicated_callback() 1842 ctx->errors++; in complicated_callback() 1844 ctx->errors++; in complicated_callback() 1866 if (ctx->errors) in complicated_callback() 1869 ctx->errors, ctx->packet_count); in complicated_callback() 2021 else if (context.errors > in test_queue()
|
/linux-4.4.14/Documentation/input/ |
D | cs461x.txt | 42 errors.
|
/linux-4.4.14/kernel/trace/ |
D | blktrace.c | 718 what, rq->errors, rq->cmd_len, rq->cmd); in blk_add_trace_rq() 722 rq->cmd_flags, what, rq->errors, 0, NULL); in blk_add_trace_rq() 949 rq_data_dir(rq), BLK_TA_REMAP, !!rq->errors, in blk_add_trace_rq_remap() 975 BLK_TA_DRV_DATA, rq->errors, len, data); in blk_add_driver_data() 978 BLK_TA_DRV_DATA, rq->errors, len, data); in blk_add_driver_data()
|
/linux-4.4.14/Documentation/vm/ |
D | hwpoison.txt | 3 Upcoming Intel CPUs have support for recovering from some memory errors 61 This allows applications who can process memory errors in a gentle
|
D | overcommit-accounting | 20 pages but will receive errors on memory allocation as
|
/linux-4.4.14/Documentation/w1/slaves/ |
D | w1_ds2423 | 43 example from the read with crc errors:
|
/linux-4.4.14/Documentation/usb/ |
D | URB.txt | 73 // ISO only: packets are only "best effort"; each can have errors 74 int error_count; // number of errors 201 handler, you should have a look at urb->status to detect any USB errors.
|
/linux-4.4.14/Documentation/kbuild/ |
D | kbuild.txt | 184 KBUILD_MODPOST_WARN can be set to avoid errors in case of undefined 185 symbols in the final module linking stage. It changes such errors
|
/linux-4.4.14/Documentation/development-process/ |
D | 4.Coding | 209 many of those errors as possible before our code goes into the mainline 218 potential errors. Quite often, these warnings point to real problems. 244 - DEBUG_SLAB can find a variety of memory allocation and use errors; it 248 number of common locking errors. 284 Other kinds of errors can be found with the "sparse" static analysis tool. 300 Other kinds of portability errors are best found by compiling your code for
|
/linux-4.4.14/Documentation/devicetree/bindings/usb/ |
D | dwc3.txt | 28 amount of 8B10B errors occur.
|
/linux-4.4.14/drivers/net/ethernet/qlogic/qlcnic/ |
D | qlcnic_ctx.c | 1109 esw_stats->errors = le64_to_cpu(stats->errors); in qlcnic_get_port_stats() 1202 esw_stats->errors = QLCNIC_STATS_NOT_AVAIL; in qlcnic_get_eswitch_stats() 1226 QLCNIC_ADD_ESW_STATS(esw_stats->errors, in qlcnic_get_eswitch_stats() 1227 port_stats.errors); in qlcnic_get_eswitch_stats()
|
/linux-4.4.14/Documentation/security/ |
D | keys-request-key.txt | 191 The moment one succeeds, all pending errors are discarded and the found key is 195 error. Note that several errors may have come from LSM.
|
/linux-4.4.14/drivers/gpu/drm/tegra/ |
D | dsi.c | 1119 u16 errors; in tegra_dsi_read_response() local 1127 errors = (value >> 8) & 0xffff; in tegra_dsi_read_response() 1129 errors); in tegra_dsi_read_response() 1131 if (errors & BIT(i)) in tegra_dsi_read_response()
|
/linux-4.4.14/arch/x86/include/asm/ |
D | apicdef.h | 284 u32 errors; member
|
/linux-4.4.14/drivers/scsi/aic7xxx/ |
D | Kconfig.aic79xx | 65 driver errors.
|
D | Kconfig.aic7xxx | 70 driver errors.
|
/linux-4.4.14/Documentation/thermal/ |
D | power_allocator.txt | 29 err_integral is the sum of previous errors 164 error is below `integral_cutoff`, errors are accumulated in the
|
/linux-4.4.14/Documentation/blockdev/ |
D | zram.txt | 34 examples below. However, it is your sole responsibility to handle errors. 36 zram sysfs attributes always return negative values in case of errors.
|
/linux-4.4.14/drivers/scsi/mpt3sas/ |
D | Kconfig | 26 # the risks and costs of program errors, damage to or loss of data,
|
/linux-4.4.14/drivers/scsi/ufs/ |
D | Kconfig | 29 # program errors, damage to or loss of data, programs or equipment,
|
/linux-4.4.14/drivers/net/ethernet/intel/e1000/ |
D | e1000_main.c | 3952 u8 errors = (u8)(status_err >> 24); in e1000_rx_checksum() local 3961 if (unlikely(errors & E1000_RXD_ERR_TCPE)) { in e1000_rx_checksum() 4088 u8 status, u8 errors, in e1000_tbi_should_accept() argument 4094 if (TBI_ACCEPT(hw, status, errors, length, last_byte)) { in e1000_tbi_should_accept() 4172 (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK))) { in e1000_clean_jumbo_rx_irq() 4176 rx_desc->errors, in e1000_clean_jumbo_rx_irq() 4247 status | rx_desc->errors << 24, in e1000_clean_jumbo_rx_irq() 4273 ((u32)(rx_desc->errors) << 24), in e1000_clean_jumbo_rx_irq() 4425 if (unlikely(rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK)) { in e1000_clean_rx_irq() 4427 rx_desc->errors, in e1000_clean_rx_irq() [all …]
|
/linux-4.4.14/arch/arc/kernel/ |
D | entry-arcv2.S | 97 ; - Unlike ARCompact, handles Bus errors for both User/Kernel mode,
|
/linux-4.4.14/Documentation/networking/caif/ |
D | README | 65 upon errors.
|
/linux-4.4.14/drivers/w1/slaves/ |
D | Kconfig | 31 to the chip's output register in order to detect errors.
|
/linux-4.4.14/drivers/memory/ |
D | Kconfig | 98 Say Y for reporting of errors from the Freescale CoreNet
|
/linux-4.4.14/drivers/net/ethernet/realtek/ |
D | Kconfig | 92 reset sequence, in the face of severe receive errors. This "new"
|
/linux-4.4.14/Documentation/video4linux/cx2341x/ |
D | fw-dma.txt | 39 - The driver checks the DMA status register for any errors.
|
/linux-4.4.14/drivers/media/pci/bt8xx/ |
D | bttvp.h | 483 unsigned int errors; member
|
/linux-4.4.14/Documentation/serial/ |
D | driver | 236 IGNPAR - ignore parity and framing errors 237 IGNBRK - ignore break errors, If IGNPAR is also 238 set, ignore overrun errors as well.
|
/linux-4.4.14/drivers/video/fbdev/omap2/displays-new/ |
D | panel-dsi-cm.c | 396 u8 errors = 0; in dsicm_num_errors_show() local 407 &errors); in dsicm_num_errors_show() 419 return snprintf(buf, PAGE_SIZE, "%d\n", errors); in dsicm_num_errors_show()
|
/linux-4.4.14/Documentation/gpio/ |
D | consumer.txt | 59 errors and an absence of GPIO for optional GPIO parameters. For the common 153 checked, since the get/set calls don't return errors and since misconfiguration 188 The get/set calls do not return errors because "invalid GPIO" should have been
|
/linux-4.4.14/arch/ia64/ |
D | Kconfig | 464 tristate "MCA recovery from errors other than TLB." 490 call MC error injection PAL procedures to inject various errors. 503 firmware extensions, such as the ability to inject memory-errors
|
/linux-4.4.14/fs/xfs/ |
D | Kconfig | 81 not cause the kernel to panic on non-fatal errors.
|
/linux-4.4.14/Documentation/ABI/ |
D | README | 25 errors or security problems are found in them. Userspace
|