Searched refs:errors (Results 1 - 25 of 218) sorted by relevance

123456789

/linux-master/drivers/md/bcache/
H A Dio.c55 /* IO errors */
58 unsigned int errors; local
74 errors = atomic_add_return(1, &dc->io_errors);
75 if (errors < dc->error_limit)
96 unsigned int errors; local
102 * successfully do so, we rescale the errors once:
110 errors = atomic_read(&ca->io_errors);
112 old = errors;
113 new = ((uint64_t) errors * 127) / 128;
114 errors
122 unsigned int errors = atomic_add_return(1 << IO_ERROR_SHIFT, local
[all...]
/linux-master/tools/testing/selftests/arm64/abi/
H A Dsyscall-abi.c76 int errors = 0; local
87 errors++;
91 return errors;
109 int errors = 0; local
119 errors++;
132 errors++;
136 return errors;
156 int errors = 0; local
175 errors++;
185 errors
216 int errors = 0; local
262 int errors = 0; local
294 int errors = 0; local
325 int errors = 0; local
351 int errors = 0; local
396 int errors = 0; local
[all...]
/linux-master/drivers/gpu/drm/xe/
H A Dxe_reg_sr_types.h33 unsigned int errors; member in struct:xe_reg_sr
/linux-master/tools/testing/selftests/rcutorture/bin/
H A Dparse-build.sh33 print_bug $title build errors:
45 print_warning $title build errors:
H A Dkvm-find-errors.sh10 # Usage: kvm-find-errors.sh directory
29 # Find builds with errors
50 echo No build errors.
58 # Find console logs with errors
72 echo No errors in console logs.
H A Dkvm-recheck.sh5 # check the build and console output for errors. Given a directory
122 echo $configerrors runs with .config errors.
125 EDITOR=echo kvm-find-errors.sh "${@: -1}" > $T 2>&1
129 echo $builderrors runs with build errors.
135 echo $runerrors runs with runtime errors.
/linux-master/fs/bcachefs/
H A Dsb-downgrade.c12 #include "sb-errors.h"
18 * Upgrade, downgrade tables - run certain recovery passes, fix certain errors
20 * x(version, recovery_passes, errors...)
65 const u16 *errors; member in struct:upgrade_downgrade_entry
77 .errors = upgrade_##ver##_errors, \
104 for (const u16 *e = i->errors;
105 e < i->errors + i->nr_errors;
113 #define x(ver, passes, ...) static const u16 downgrade_ver_##errors[] = { __VA_ARGS__ };
122 .errors = downgrade_##ver##_errors, \
131 return (void *) &e->errors[le16_to_cp
[all...]
H A Dsb-errors.c4 #include "sb-errors.h"
35 struct bch_sb_field_errors *e = field_to_type(f, errors);
60 struct bch_sb_field_errors *e = field_to_type(f, errors);
114 bch2_sb_field_resize(&c->disk_sb, errors,
130 struct bch_sb_field_errors *src = bch2_sb_field_get(c->disk_sb.sb, errors);
/linux-master/tools/perf/scripts/perl/
H A Drw-by-pid.pl36 $reads{$common_pid}{errors}{$ret}++;
58 $writes{$common_pid}{errors}{$ret}++;
95 printf("%6s %20s %6s %10s\n", "pid", "comm", "error #", "# errors");
102 foreach my $error (keys %{$reads{$pid}{errors}}) {
104 my $errcount = $reads{$pid}{errors}{$error} || 0;
135 printf("%6s %20s %6s %10s\n", "pid", "comm", "error #", "# errors");
142 foreach my $error (keys %{$writes{$pid}{errors}}) {
144 my $errcount = $writes{$pid}{errors}{$error} || 0;
/linux-master/tools/testing/selftests/bpf/
H A Dtest_tunnel.sh585 local errors=0
589 errors=$(( $errors + $? ))
593 errors=$(( $errors + $? ))
597 errors=$(( $errors + $? ))
601 errors=$(( $errors + $? ))
605 errors
[all...]
/linux-master/drivers/macintosh/
H A Dwindfarm_pid.c46 st->errors[i] = error;
53 st->errors[st->index] = error;
58 integ += st->errors[(st->index + hlen - i) % hlen];
62 deriv = st->errors[st->index] -
63 st->errors[(st->index + hlen - 1) % hlen];
101 st->errors[i] = error;
109 st->errors[st->index] = error;
116 integ += st->errors[(st->index + hlen - i) % hlen];
H A Dwindfarm_pid.h42 s32 errors[WF_PID_MAX_HISTORY]; /* error history buffer */ member in struct:wf_pid_state
79 s32 errors[WF_PID_MAX_HISTORY]; /* error history buffer */ member in struct:wf_cpu_pid_state
/linux-master/tools/testing/selftests/powerpc/mm/
H A Dsubpage_prot.c35 int errors; variable
80 ++errors;
119 errors = 0;
130 if (errors) {
131 printf("%d errors detected\n", errors);
/linux-master/tools/testing/selftests/arm64/fp/
H A Dsve-ptrace.c261 uint32_t *in, uint32_t *out, int *errors)
266 (*errors)++;
338 int errors = 0; local
396 errors++;
405 errors++;
410 read_buf + SVE_PT_SVE_FPSR_OFFSET(vq), &errors);
412 read_buf + SVE_PT_SVE_FPCR_OFFSET(vq), &errors);
414 ksft_test_result(errors == 0, "Set and get %s data for VL %u\n",
434 int errors = 0; local
490 errors
260 check_u32(unsigned int vl, const char *reg, uint32_t *in, uint32_t *out, int *errors) argument
519 int errors = 0; local
[all...]
/linux-master/arch/um/drivers/
H A Dpcap_user.c20 char errors[PCAP_ERRBUF_SIZE]; local
23 pri->promisc, 0, errors);
26 "'%s'\n", errors);
/linux-master/drivers/net/ethernet/huawei/hinic/
H A Dhinic_rx.h24 u64 errors; member in struct:hinic_rxq_stats
/linux-master/drivers/gpu/drm/ci/
H A Dcheck-patch.py44 errors = False variable
/linux-master/drivers/usb/
H A Dusb-skeleton.c59 int errors; /* the last request tanked */ member in struct:usb_skel
61 spinlock_t err_lock; /* lock for errors */
149 /* read out errors, leave subsequent opens a clean slate */
151 res = dev->errors ? (dev->errors == -EPIPE ? -EPIPE : -EIO) : 0;
152 dev->errors = 0;
168 /* sync/async unlink faults aren't errors */
177 dev->errors = urb->status;
267 /* errors must be reported */
268 rv = dev->errors;
[all...]
/linux-master/tools/testing/selftests/netfilter/
H A Dipvs.sh196 local errors=
202 errors=$(( $errors + $? ))
208 errors=$(( $errors + $? ))
214 errors=$(( $errors + $? ))
216 return $errors
/linux-master/tools/tracing/latency/
H A DMakefile.config29 $(error Please, check the errors above.)
/linux-master/arch/x86/tools/
H A Dinsn_sanity.c204 /* Check errors */
223 int errors = 0; local
247 errors++;
255 fprintf((errors) ? stderr : stdout,
256 "%s: %s: decoded and checked %d %s instructions with %d errors (seed:0x%x)\n",
258 (errors) ? "Failure" : "Success",
261 errors,
264 return errors ? 1 : 0;
/linux-master/drivers/spi/
H A Dspi-rzv2m-csi.c108 u32 errors; member in struct:rzv2m_csi_priv
303 csi->errors || csi->target_aborted);
309 csi->errors, HZ) == 0 ? -ETIMEDOUT : 0;
314 if (csi->errors)
330 csi->errors |= RX_TIMEOUT_ERROR;
343 csi->errors |= OVERFLOW_ERROR;
345 csi->errors |= UNDERRUN_ERROR;
458 csi->errors = 0;
517 if (csi->errors) {
550 if (csi->errors
[all...]
/linux-master/drivers/edac/
H A De752x_edac.c516 static void do_global_error(int fatal, u32 errors) argument
521 if (errors & (1 << i)) {
523 * we are to report ALL errors, then
534 static inline void global_error(int fatal, u32 errors, int *error_found, argument
540 do_global_error(fatal, errors);
550 static void do_hub_error(int fatal, u8 errors) argument
555 if (errors & (1 << i))
561 static inline void hub_error(int fatal, u8 errors, int *error_found, argument
567 do_hub_error(fatal, errors);
607 static void do_nsi_error(int fatal, u32 errors) argument
618 nsi_error(int fatal, u32 errors, int *error_found, int handle_error) argument
634 do_membuf_error(u8 errors) argument
645 membuf_error(u8 errors, int *error_found, int handle_error) argument
665 do_sysbus_error(int fatal, u32 errors) argument
676 sysbus_error(int fatal, u32 errors, int *error_found, int handle_error) argument
[all...]
/linux-master/drivers/base/test/
H A Dtest_async_driver_probe.c21 static atomic_t warnings, errors, timeout, async_completed; variable
34 atomic_inc(&errors);
240 * Otherwise if they completed without errors or warnings then
247 } else if (!atomic_read(&errors) && !atomic_read(&warnings)) {
267 * errors or warnings being reported by the probe routine.
270 atomic_inc(&errors);
274 pr_err("Test failed with %d errors and %d warnings\n",
275 atomic_read(&errors), atomic_read(&warnings));
/linux-master/drivers/vdpa/vdpa_sim/
H A Dvdpa_sim_net.c45 u64 errors; member in struct:vdpasim_dataq_stats
53 u64 errors; member in struct:vdpasim_cq_stats
134 u64 requests = 0, errors = 0, successes = 0; local
154 ++errors;
169 ++errors;
191 net->cq_stats.errors += errors;
273 net->tx_stats.errors += tx_errors;
280 net->rx_stats.errors += rx_errors;
302 rx_errors = net->rx_stats.errors;
[all...]

Completed in 301 milliseconds

123456789