Home
last modified time | relevance | path

Searched full:errors (Results 1 – 25 of 4716) sorted by relevance

12345678910>>...189

/OK3568_Linux_fs/kernel/Documentation/PCI/
H A Dpcieaer-howto.rst41 - Gathers the comprehensive error information if errors occurred.
92 When PCIe AER errors are captured, the counters / statistics are also exposed
105 PCI Express errors are classified into two types: correctable errors
106 and uncorrectable errors. This classification is based on the impacts
107 of those errors, which may result in degraded performance or function
110 Correctable errors pose no impacts on the functionality of the
112 intervention or any loss of data. These errors are detected and
113 corrected by hardware. Unlike correctable errors, uncorrectable
114 errors impact functionality of the interface. Uncorrectable errors
117 errors are further classified into non-fatal errors and fatal errors.
[all …]
/OK3568_Linux_fs/u-boot/scripts/dtc/pylibfdt/
H A Dlibfdt.i_shipped44 # Pass this as the 'quiet' parameter to return -ENOTFOUND on NOTFOUND errors,
71 This is used to check for errors returned by libfdt C functions.
75 quiet: Errors to ignore (empty to raise on all errors)
96 quiet: Errors to ignore (empty to raise on all errors)
125 defaults to empty, but you can pass a list of errors that you expect.
126 If one of these errors occurs, the function will return an error number
139 quiet: Errors to ignore (empty to raise on all errors)
155 quiet: Errors to ignore (empty to raise on all errors)
170 quiet: Errors to ignore (empty to raise on all errors)
187 quiet: Errors to ignore (empty to raise on all errors)
[all …]
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.mpc83xx.ddrecc6 * (injecting errors is initially disabled)
8 * define inject mask (which tells the DDR controller what type of errors
11 * enable injecting errors - from now on the controller injects errors as
14 IMPORTANT NOTICE: enabling injecting multiple-bit errors is potentially
15 dangerous as such errors are NOT corrected by the controller. Therefore caution
16 should be taken when enabling the injection of multiple-bit errors: it is only
19 Errors' below). In particular, when you simply set the multiple-bit errors in
21 errors will be injected when it accesses its code, data etc.
34 Injecting Single-Bit Errors
56 Multiple Memory Errors: 0
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/
H A Dparsing_context.hpp56 ParsingContext() : errors(std::make_shared<std::vector<ParsingError>>()) {} in ParsingContext()
57 …ParsingContext(std::string key_) : key(std::move(key_)), errors(std::make_shared<std::vector<Parsi… in ParsingContext()
60 errors(std::make_shared<std::vector<ParsingError>>()) in ParsingContext()
69 const std::vector<ParsingError>& getErrors() const { return *errors; } in getErrors()
118 errors->push_back({message, key}); in error()
122 errors->push_back({message, key + "[" + util::toString(child) + "]"}); in error()
126errors->push_back({message, key + "[" + util::toString(child) + "][" + util::toString(grandchild) … in error()
130 errors->reserve(errors->size() + ctx.errors->size()); in appendErrors()
131 std::move(ctx.errors->begin(), ctx.errors->end(), std::inserter(*errors, errors->end())); in appendErrors()
132 ctx.errors->clear(); in appendErrors()
[all …]
/OK3568_Linux_fs/kernel/drivers/md/bcache/
H A Dio.c54 /* IO errors */
57 unsigned int errors; in bch_count_backing_io_errors() local
73 errors = atomic_add_return(1, &dc->io_errors); in bch_count_backing_io_errors()
74 if (errors < dc->error_limit) in bch_count_backing_io_errors()
95 unsigned int errors; in bch_count_io_errors() local
101 * successfully do so, we rescale the errors once: in bch_count_io_errors()
109 errors = atomic_read(&ca->io_errors); in bch_count_io_errors()
111 old = errors; in bch_count_io_errors()
112 new = ((uint64_t) errors * 127) / 128; in bch_count_io_errors()
113 errors = atomic_cmpxchg(&ca->io_errors, in bch_count_io_errors()
[all …]
/OK3568_Linux_fs/kernel/Documentation/driver-api/soundwire/
H A Derror_handling.rst5 The SoundWire PHY was designed with care and errors on the bus are going to
7 errors. Examples of this design can be found in the synchronization
8 mechanism (sync loss after two errors) and short CRCs used for the Bulk
11 The errors can be detected with multiple mechanisms:
13 1. Bus clash or parity errors: This mechanism relies on low-level detectors
15 and audio data. The current implementation only logs such errors.
17 restarting from a known position. In the case of such errors outside of a
21 and after a number of such errors are detected the bus might be reset. Note
22 that bus clashes due to programming errors (two streams using the same bit
27 not be responsible for the errors so resetting them individually is not a
[all …]
/OK3568_Linux_fs/kernel/drivers/scsi/ufs/
H A Dufs-debugfs.c29 PRT("PHY Adapter Layer errors (except LINERESET): %llu\n", PA_ERR); in ufs_debugfs_stats_show()
30 PRT("Data Link Layer errors: %llu\n", DL_ERR); in ufs_debugfs_stats_show()
31 PRT("Network Layer errors: %llu\n", NL_ERR); in ufs_debugfs_stats_show()
32 PRT("Transport Layer errors: %llu\n", TL_ERR); in ufs_debugfs_stats_show()
33 PRT("Generic DME errors: %llu\n", DME_ERR); in ufs_debugfs_stats_show()
34 PRT("Auto-hibernate errors: %llu\n", AUTO_HIBERN8_ERR); in ufs_debugfs_stats_show()
35 PRT("IS Fatal errors (CEFES, SBFES, HCFES, DFES): %llu\n", FATAL_ERR); in ufs_debugfs_stats_show()
36 PRT("DME Link Startup errors: %llu\n", LINK_STARTUP_FAIL); in ufs_debugfs_stats_show()
37 PRT("PM Resume errors: %llu\n", RESUME_ERR); in ufs_debugfs_stats_show()
38 PRT("PM Suspend errors : %llu\n", SUSPEND_ERR); in ufs_debugfs_stats_show()
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Ddump.py95 Will give up permanently after 5 errors from running commands over
103 self.errors = 0
106 if self.errors >= 5:
107 …print("Too many errors when dumping data from target, assuming it is dead! Will not dump data anym…
116 self.errors = self.errors + 1
119 self.errors = self.errors + 1
126 Will stop completely if there are more than 5 errors when dumping monitor data.
133 self.errors = 0
140 if self.errors >= 5:
141 …print("Too many errors when dumping data from qemu monitor, assuming it is dead! Will not dump dat…
[all …]
/OK3568_Linux_fs/kernel/Documentation/x86/x86_64/
H A Dmachinecheck.rst8 by the CPU. Uncorrected errors typically cause a machine check
17 When you see the "Machine check errors logged" message in the system
40 How often to poll for corrected machine check errors, in seconds
47 check errors (but some corrected errors might be still reported
60 0: always panic on uncorrected errors, log corrected errors
61 1: panic or SIGBUS on uncorrected errors, log corrected errors
62 2: SIGBUS or log uncorrected errors, log corrected errors
63 3: never panic or SIGBUS, log all errors (for testing only)
H A Dboot-options.rst25 Don't make logs for corrected errors. All events reported
28 of corrected errors.
30 Disable features for corrected errors, e.g. polling timer
34 there is an agent checking/clearing corrected errors
52 0: always panic on uncorrected errors, log corrected errors
53 1: panic or SIGBUS on uncorrected errors, log corrected errors
54 2: SIGBUS or log uncorrected errors, log corrected errors
55 3: never panic or SIGBUS, log all errors (for testing only)
67 errors since we will not see details for all errors.
208 Disable firmware first mode for corrected errors. This
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/rsync/files/
H A D0001-Turn-on-pedantic-errors-at-the-end-of-configure.patch4 Subject: [PATCH] Turn on -pedantic-errors at the end of 'configure'
23 - # Turn pedantic warnings into errors to ensure an array-init overflow is an error.
24 - CFLAGS="$CFLAGS -pedantic-errors"
26 - # Our internal popt code cannot be compiled with pedantic warnings as errors, so try to
31 - *-Wpedantic*) CFLAGS="$CFLAGS -pedantic-errors -Wno-pedantic" ;;
43 +# Enable -pedantic-errors last, so that it doesn't mess up other
45 +# prototypes like 'int main () {}' which Clang 15's -pedantic-errors
50 + # Turn pedantic warnings into errors to ensure an array-init overflow is an error.
51 + CFLAGS="$CFLAGS -pedantic-errors"
53 + # Our internal popt code cannot be compiled with pedantic warnings as errors, so try to
[all …]
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-bus-pci-devices-aer_stats5 statistical counters indicate the errors "as seen/reported by the device".
8 errors may be "seen" / reported by the link partner and not the
16 Description: List of correctable errors seen and reported by this
17 PCI device using ERR_COR. Note that since multiple errors may
20 total of all the errors in the file. Sample output::
37 Description: List of uncorrectable fatal errors seen and reported by this
38 PCI device using ERR_FATAL. Note that since multiple errors may
41 total of all the errors in the file. Sample output::
67 Description: List of uncorrectable nonfatal errors seen and reported by this
68 PCI device using ERR_NONFATAL. Note that since multiple errors
[all …]
H A Dsysfs-platform-dfl-fme48 What: /sys/bus/platform/devices/dfl-fme.0/errors/pcie0_errors
52 Description: Read-Write. Read this file for errors detected on pcie0 link.
53 Write this file to clear errors logged in pcie0_errors. Write
57 What: /sys/bus/platform/devices/dfl-fme.0/errors/pcie1_errors
61 Description: Read-Write. Read this file for errors detected on pcie1 link.
62 Write this file to clear errors logged in pcie1_errors. Write
66 What: /sys/bus/platform/devices/dfl-fme.0/errors/nonfatal_errors
70 Description: Read-only. It returns non-fatal errors detected.
72 What: /sys/bus/platform/devices/dfl-fme.0/errors/catfatal_errors
76 Description: Read-only. It returns catastrophic and fatal errors detected.
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/sys/
H A Dxattr.h40 is SIZE bytes long). Return 0 on success, -1 for errors. */
47 Return 0 on success, -1 for errors. */
53 bytes long). Return 0 on success, -1 for errors. */
58 SIZE bytes long). Return 0 on success, -1 for errors. */
64 Return 0 on success, -1 for errors. */
69 bytes long). Return 0 on success, -1 for errors. */
75 errors. */
81 last pathname component. Return 0 on success, -1 for errors. */
86 LIST (which is SIZE bytes big). Return 0 on success, -1 for errors. */
91 on success, -1 for errors. */
[all …]
H A Dsocket.h101 Returns a file descriptor for the new socket, or -1 for errors. */
107 one will be chosen automatically. Returns 0 on success, -1 for errors. */
122 Return 0 on success, -1 for errors.
141 Returns the number read or -1 for errors.
148 ADDR_LEN bytes long). Returns the number sent, or -1 for errors.
159 Returns the number of bytes read or -1 for errors.
169 Returns the number of bytes sent, or -1 for errors.
178 Returns the number of datagrams successfully written or -1 for errors.
187 Returns the number of bytes read or -1 for errors.
195 Returns the number of messages received or -1 for errors.
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/sys/
H A Dxattr.h40 is SIZE bytes long). Return 0 on success, -1 for errors. */
47 Return 0 on success, -1 for errors. */
53 bytes long). Return 0 on success, -1 for errors. */
58 SIZE bytes long). Return 0 on success, -1 for errors. */
64 Return 0 on success, -1 for errors. */
69 bytes long). Return 0 on success, -1 for errors. */
75 errors. */
81 last pathname component. Return 0 on success, -1 for errors. */
86 LIST (which is SIZE bytes big). Return 0 on success, -1 for errors. */
91 on success, -1 for errors. */
[all …]
H A Dsocket.h101 Returns a file descriptor for the new socket, or -1 for errors. */
107 one will be chosen automatically. Returns 0 on success, -1 for errors. */
122 Return 0 on success, -1 for errors.
141 Returns the number read or -1 for errors.
148 ADDR_LEN bytes long). Returns the number sent, or -1 for errors.
159 Returns the number of bytes read or -1 for errors.
169 Returns the number of bytes sent, or -1 for errors.
178 Returns the number of datagrams successfully written or -1 for errors.
187 Returns the number of bytes read or -1 for errors.
195 Returns the number of messages received or -1 for errors.
[all …]
/OK3568_Linux_fs/kernel/drivers/fpga/
H A Ddfl-afu-error.c30 /* mask or unmask port errors by the error mask register. */
49 /* clear port errors. */
64 * clear Port Errors in afu_port_err_clear()
68 * - Set PORT Error mask to all 1 to mask errors in afu_port_err_clear()
69 * - Clear all errors in afu_port_err_clear()
70 * - Set Port mask to all 0 to enable errors in afu_port_err_clear()
71 * - All errors start capturing new errors in afu_port_err_clear()
78 dev_err(dev, "Could not clear errors, device in AP6 state.\n"); in afu_port_err_clear()
87 /* Mask all errors */ in afu_port_err_clear()
90 /* Clear errors if err input matches with current port errors.*/ in afu_port_err_clear()
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/builds/
H A Dtest_core_image_min.py56 msg='Errors task order is not unique')
73 len(cnt_err), 0, msg='Errors for task id: %s' % cnt_err)
90 msg='Errors for task id: %s' % cnt_err)
111 msg='Errors for task id: %s' % cnt_err)
126 msg='Errors for task id: %s' % cnt_err)
140 msg='Errors for task id: %s' % cnt_err)
154 msg='Errors for task id: %s' % cnt_err)
168 msg='Errors for task id: %s' % cnt_err)
185 msg='Errors for task id: %s' % cnt_err)
201 msg='Errors for target installed package id: %s' %
[all …]
/OK3568_Linux_fs/u-boot/tools/patman/
H A Dcheckpatch.py51 errors: Number of errors
57 fields = ['ok', 'problems', 'errors', 'warnings', 'checks', 'lines',
61 result.errors, result.warning, result.checks = 0, 0, 0
71 # total: 0 errors, 0 warnings, 159 lines checked
73 # total: 0 errors, 2 warnings, 7 checks, 473 lines checked
74 re_stats = re.compile('total: (\\d+) errors, (\d+) warnings, (\d+)')
75 re_stats_full = re.compile('total: (\\d+) errors, (\d+) warnings, (\d+)'
96 result.errors = int(match.group(1))
151 error_count += result.errors
154 print('%d errors, %d warnings, %d checks for %s:' % (result.errors,
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/
H A Dtest_tunnel.sh162 # causing errors at get_tunnel_{key/opt}.
730 local errors=0
734 errors=$(( $errors + $? ))
738 errors=$(( $errors + $? ))
742 errors=$(( $errors + $? ))
746 errors=$(( $errors + $? ))
750 errors=$(( $errors + $? ))
754 errors=$(( $errors + $? ))
758 errors=$(( $errors + $? ))
762 errors=$(( $errors + $? ))
[all …]
/OK3568_Linux_fs/kernel/Documentation/driver-api/
H A Dlibata.rst403 This chapter describes how errors are handled under libata. Readers are
580 Errors which aren't ATA device errors are treated as ATA device
581 errors by setting ATA_ERR bit. Better error descriptor which can
582 properly represent ATA and other errors/exceptions is needed.
593 errors and other errors quite often require reset to return to known
597 - ATA errors are directly handled in the interrupt handler and PIO
598 errors in pio_task. This is problematic for advanced error handling
637 ATA errors and exceptions
648 which are not errors (say, power or hotplug events), or to describe both
649 errors and non-error exceptional conditions. Where explicit distinction
[all …]
/OK3568_Linux_fs/kernel/arch/sparc/include/asm/
H A Dhypervisor.h88 * ERRORS: This service does not return.
118 * ERRORS: HV_EBADALIGN Buffer is badly aligned
143 * ERRORS: This service does not return.
242 * ERRORS: ENOCPU Invalid CPU ID
269 * ERRORS: ENOCPU Invalid CPU ID
293 * ERRORS: No possible error.
310 * ERRORS: ENOCPU cpuid refers to a CPU that does not exist
331 * ERRORS: ENORADDR Invalid base real address
379 * ERRORS: EINVAL Invalid queue
397 * ERRORS: EBADALIGN Mondo data is not 64-byte aligned or CPU list
[all …]
/OK3568_Linux_fs/u-boot/tools/buildman/
H A Dtest.py37 errors = [ variable
77 # hash, subject, return code, list of errors/warnings
80 ['5678', 'Second commit, a warning', 0, errors[0:1]],
81 ['9012', 'Third commit, error', 1, errors[0:2]],
82 ['3456', 'Fourth commit, warning', 0, [errors[0], errors[2]]],
83 ['7890', 'Fifth commit, link errors', 1, [errors[0], errors[3]]],
84 ['abcd', 'Sixth commit, fixes all errors', 0, []],
85 ['ef01', 'Seventh commit, check directory suppression', 1, [errors[4]]],
218 errors[0].rstrip().replace('\n', '\nw+'))
228 errors[1].rstrip().replace('\n', '\n+'))
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-extended/python-pykickstart/files/
H A D0001-support-authentication-for-kickstart.patch17 pykickstart/errors.py | 17 +++++++++++++++++
22 diff --git a/pykickstart/errors.py b/pykickstart/errors.py
24 --- a/pykickstart/errors.py
25 +++ b/pykickstart/errors.py
27 KickstartVersionError - An exception for errors relating to unsupported
30 + KickstartAuthError - An exception for errors relating to authentication
42 + """An exception for errors relating to authentication failed while
67 -from pykickstart.errors import KickstartError
68 +from pykickstart.errors import KickstartError, KickstartAuthError

12345678910>>...189