Searched refs:errors (Results 101 - 125 of 221) sorted by relevance

123456789

/linux-master/drivers/mtd/
H A Drfd_ftl.c86 int errors; member in struct:partition
135 part->errors = 1;
227 part->errors = 1;
777 else if (part->errors) {
778 printk(KERN_WARNING PREFIX "'%s': errors found, "
/linux-master/drivers/net/ethernet/freescale/dpaa2/
H A Ddpaa2-eth-devlink.c152 /* Configure handling of frames marked as errors from the parser */
153 err_cfg.errors = DPAA2_FAS_RX_ERR_MASK;
/linux-master/drivers/gpu/drm/amd/display/modules/inc/
H A Dmod_hdcp.h72 MOD_HDCP_STATUS_DDC_FAILURE, /* TODO: specific errors */
203 struct mod_hdcp_error errors[MAX_NUM_OF_ERROR_TRACE]; member in struct:mod_hdcp_trace
/linux-master/drivers/net/can/
H A Dsun4i_can.c312 u32 errors; local
321 errors = readl(priv->base + SUN4I_REG_ERRC_ADDR);
323 bec->txerr = errors & 0xFF;
324 bec->rxerr = (errors >> 16) & 0xFF;
/linux-master/tools/scripts/
H A Dutilities.mak187 # errors for one of the cases flex generates code C compilers complains about.
196 # check the flex version to see if we can use compiler warnings as errors for
/linux-master/Documentation/sphinx/
H A Dautomarkup.py10 from sphinx.errors import NoUri
/linux-master/scripts/genksyms/
H A Dgenksyms.c36 static int errors; variable
670 errors++;
712 errors++;
842 return errors != 0;
/linux-master/fs/exfat/
H A Dsuper.c151 if (opts->errors == EXFAT_ERRORS_CONT)
152 seq_puts(m, ",errors=continue");
153 else if (opts->errors == EXFAT_ERRORS_PANIC)
154 seq_puts(m, ",errors=panic");
156 seq_puts(m, ",errors=remount-ro");
235 fsparam_enum("errors", Opt_errors, exfat_param_enums),
289 opts->errors = result.uint_32;
760 sbi->options.errors = EXFAT_ERRORS_RO;
/linux-master/drivers/gpu/drm/xe/tests/
H A Dxe_rtp_test.c261 KUNIT_EXPECT_EQ(test, reg_sr->errors, param->expected_sr_errors);
/linux-master/drivers/gpu/drm/xe/
H A Dxe_reg_sr.c89 sr->errors++;
/linux-master/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_aca.c292 aerr = &error_cache->errors[type];
474 struct aca_error *aerr = &error_cache->errors[type];
557 aca_error_init(&error_cache->errors[type], type);
577 aca_error_fini(&error_cache->errors[type]);
H A Damdgpu_aca.h147 struct aca_error errors[ACA_ERROR_TYPE_COUNT]; member in struct:aca_error_cache
/linux-master/fs/btrfs/
H A Dtransaction.c777 * other structures so it needs to be ended in case of errors,
1143 * writeback hasn't finished yet (and without errors).
1183 * Ignore -ENOMEM errors returned by clear_extent_bit().
1209 bool errors = false; local
1214 errors = true;
1216 if (errors && !err)
1225 bool errors = false; local
1233 errors = true;
1237 errors = true;
1239 if (errors
[all...]
/linux-master/drivers/md/
H A Ddm-mpath.c1536 static void pg_init_done(void *data, int errors) argument
1545 switch (errors) {
1550 errors = 0;
1554 "Error %d.", m->hw_handler_name, errors);
1575 errors = 0;
1588 if (errors) {
1590 DMERR("Could not failover device. Error %d.", errors);
/linux-master/fs/f2fs/
H A Dsuper.c272 {Opt_errors, "errors=%s"},
1295 F2FS_OPTION(sbi).errors =
1298 F2FS_OPTION(sbi).errors =
1301 F2FS_OPTION(sbi).errors =
2098 if (F2FS_OPTION(sbi).errors == MOUNT_ERRORS_READONLY)
2099 seq_printf(seq, ",errors=%s", "remount-ro");
2100 else if (F2FS_OPTION(sbi).errors == MOUNT_ERRORS_CONTINUE)
2101 seq_printf(seq, ",errors=%s", "continue");
2102 else if (F2FS_OPTION(sbi).errors == MOUNT_ERRORS_PANIC)
2103 seq_printf(seq, ",errors
[all...]
/linux-master/net/ipv6/
H A Dseg6_local.c54 * netlink message during the behavior creation, no errors will be
161 u64_stats_t errors; member in struct:pcpu_seg6_local_counters
178 __u64 errors; member in struct:seg6_local_counters
1593 u64_stats_inc(&pcounters->errors);
1984 * packets, bytes and errors.
2011 if (nla_put_u64_64bit(skb, SEG6_LOCAL_CNT_ERRORS, counters->errors,
2030 u64 packets, bytes, errors; local
2039 errors = u64_stats_read(&pcounters->errors);
2045 counters.errors
[all...]
/linux-master/drivers/usb/gadget/udc/
H A Dmv_udc_core.c129 u32 errors; local
145 errors = curr_dtd->size_ioc_sts & DTD_ERROR_MASK;
146 if (!errors) {
165 errors);
166 if (errors & DTD_STATUS_HALTED) {
167 /* Clear the errors and Halt condition */
168 curr_dqh->size_ioc_int_sts &= ~errors;
170 } else if (errors & DTD_STATUS_DATA_BUFF_ERR) {
172 } else if (errors & DTD_STATUS_TRANSACTION_ERR) {
1995 udc->errors
[all...]
H A Dfsl_udc_core.c1603 int errors = 0; local
1616 errors = hc32_to_cpu(curr_td->size_ioc_sts);
1617 if (errors & DTD_ERROR_MASK) {
1618 if (errors & DTD_STATUS_HALTED) {
1619 dev_err(&udc->gadget.dev, "dTD error %08x QH=%d\n", errors, pipe);
1620 /* Clear the errors and Halt condition */
1622 tmp &= ~errors;
1629 if (errors & DTD_STATUS_DATA_BUFF_ERR) {
1633 } else if (errors & DTD_STATUS_TRANSACTION_ERR) {
1640 errors);
[all...]
/linux-master/fs/fat/
H A Dinode.c1021 if (opts->errors == FAT_ERRORS_CONT)
1022 seq_puts(m, ",errors=continue");
1023 else if (opts->errors == FAT_ERRORS_PANIC)
1024 seq_puts(m, ",errors=panic");
1026 seq_puts(m, ",errors=remount-ro");
1075 {Opt_err_cont, "errors=continue"},
1076 {Opt_err_panic, "errors=panic"},
1077 {Opt_err_ro, "errors=remount-ro"},
1164 opts->errors = FAT_ERRORS_RO;
1278 opts->errors
[all...]
/linux-master/drivers/gpu/drm/amd/display/modules/hdcp/
H A Dhdcp.c34 trace->errors[trace->error_count].status = status;
35 trace->errors[trace->error_count].state_id = hdcp->state.id;
/linux-master/drivers/net/ethernet/huawei/hinic/
H A Dhinic_rx.c60 rxq_stats->errors = 0;
80 stats->errors = rxq_stats->csum_errors +
/linux-master/tools/testing/kunit/
H A Dkunit.py515 sys.stdin.reconfigure(errors='backslashreplace') # type: ignore
518 with open(cli_args.file, 'r', errors='backslashreplace') as f:
H A Dkunit_kernel.py3 # Runs UML kernel, collects output, and handles errors.
132 text=True, errors='backslashreplace')
154 text=True, errors='backslashreplace')
/linux-master/drivers/usb/misc/
H A Dusbtest.c1138 /* unexpected status codes mean errors; ideally, in hardware */
1457 * due to errors, or is just NAKing requests.
1920 unsigned long errors; member in struct:transfer_context
1936 ctx->errors += urb->error_count;
1938 ctx->errors += (ctx->is_iso ? urb->number_of_packets : 1);
1940 ctx->errors++;
1942 ctx->errors++;
1964 if (ctx->errors)
1966 "during the test, %lu errors out of %lu\n",
1967 ctx->errors, ct
[all...]
/linux-master/kernel/
H A Dkprobes.c1447 * This returns encoded errors if it fails to look up symbol or invalid
2905 unsigned int i, total = 0, errors = 0; local
2928 errors++;
2936 if (errors)
2938 errors, total);
2951 unsigned int i, total = 0, errors = 0; local
2971 errors++;
2979 if (errors)
2981 errors, total);

Completed in 685 milliseconds

123456789