| /Linux-v5.15/Documentation/staging/ |
| D | crc32.rst | 2 brief tutorial on CRC computation 5 A CRC is a long-division remainder. You add the CRC to the message, 6 and the whole thing (message+CRC) is a multiple of the given 7 CRC polynomial. To check the CRC, you can either check that the 8 CRC matches the recomputed value, *or* you can check that the 9 remainder computed on the message+CRC is 0. This latter approach 11 protocols put the end-of-frame flag after the CRC. 21 To produce a 32-bit CRC, the divisor is actually a 33-bit CRC polynomial. 23 CRC is written in hex with the most significant bit omitted. (If you're 26 Note that a CRC is computed over a string of *bits*, so you have [all …]
|
| /Linux-v5.15/Documentation/driver-api/surface_aggregator/ |
| D | ssh.rst | 73 Each frame structure is followed by a CRC over this structure. The CRC over 76 its own CRC (over all payload bytes). If the payload is not present (i.e. 77 the frame has ``LEN=0``), the CRC of the payload is still present and will 79 equals the number of bytes inbetween the CRC of the frame and the CRC of the 97 CRC) and, if specified in the frame (i.e. ``LEN > 0``), payload bytes, 98 followed finally, regardless if the payload is present, the payload CRC. The 140 |DATA_NSQ|-type frame, followed by its CRC, payload, and payload CRC. In 146 error, e.g. an invalid CRC, the receiving party responds with a message 164 tx: -- SYN FRAME(D) CRC(F) PAYLOAD CRC(P) ----------------------------- 165 rx: ------------------------------------- SYN FRAME(A) CRC(F) CRC(P) -- [all …]
|
| /Linux-v5.15/arch/x86/crypto/ |
| D | crc32c-pcl-intel-asm_64.S | 49 ## ISCSI CRC 32 Implementation with crc32 and pclmulqdq Instruction 223 movq crc_init, %xmm1 # CRC for block 1 226 movq crc1, %xmm2 # CRC for block 2 288 crc32l (bufptmp), crc_init_dw # CRC of 4 bytes 295 crc32w (bufptmp), crc_init_dw # CRC of 2 bytes 302 crc32b (bufptmp), crc_init_dw # CRC of 1 byte
|
| D | crc32-pclmul_asm.S | 85 #define CRC %edx macro 89 #define CRC %ecx macro 110 movd CRC, CONSTANT
|
| /Linux-v5.15/drivers/soc/samsung/ |
| D | Kconfig | 59 bool "S3C2410 PM Suspend Memory CRC" 74 int "S3C2410 PM Suspend CRC Chunksize (KiB)" 78 Set the chunksize in Kilobytes of the CRC for checking memory 80 the CRC data block will take more memory, but will identify any
|
| /Linux-v5.15/Documentation/arm/samsung-s3c24xx/ |
| D | suspend.rst | 115 `S3C2410 PM Suspend Memory CRC` 120 Note, the time to calculate the CRC is dependent on the CPU speed 127 `S3C2410 PM Suspend CRC Chunksize (KiB)` 129 Defines the size of memory each CRC chunk covers. A smaller value 130 will mean that the CRC data block will take more memory, but will
|
| /Linux-v5.15/drivers/net/ethernet/amd/ |
| D | nmclan_cs.c | 1286 static void updateCRC(int *CRC, int bit) in updateCRC() argument 1300 CRC[j] = CRC[j-1]; in updateCRC() 1301 CRC[0] = 0; in updateCRC() 1304 if (bit ^ CRC[32]) in updateCRC() 1306 CRC[j] ^= poly[j]; in updateCRC() 1320 int CRC[33]={1}; /* CRC register, 1 word/bit + extra control bit */ in BuildLAF() local 1325 CRC[32]=0; in BuildLAF() 1329 updateCRC(CRC, (adr[byte] >> i) & 1); in BuildLAF() 1333 hashcode = (hashcode << 1) + CRC[i]; in BuildLAF()
|
| /Linux-v5.15/Documentation/translations/zh_CN/core-api/ |
| D | kernel-api.rst | 118 Linux中的CRC和数学函数 122 CRC函数 125 *译注:CRC,Cyclic Redundancy Check,循环冗余校验*
|
| /Linux-v5.15/Documentation/w1/slaves/ |
| D | w1_ds28e04.rst | 20 Support is provided through the sysfs files "eeprom" and "pio". CRC checking 31 to the EEPROM of the DS28E04. If CRC checking mode is enabled only
|
| D | w1_ds2438.rst | 43 Internally when this file is read, the additional CRC byte is also obtained 51 Internally when this file is read, the additional CRC byte is also obtained
|
| /Linux-v5.15/Documentation/networking/device_drivers/ethernet/altera/ |
| D | altera_tse.rst | 164 received. This count does not include any error packets such as CRC errors, 169 an integral number of bytes in length and do not pass the CRC test as the frame 174 integral number of bytes in length and do not pass the CRC test as the frame is 280 octets, and had either a bad CRC with an integral number of octets (CRC Error) 281 or a bad CRC with a non-integral number of octets (Alignment Error). 285 in length and had either a bad CRC with an integral number of octets (CRC 286 error) or a bad CRC with a non-integral number of octets (Alignment Error).
|
| /Linux-v5.15/Documentation/driver-api/pldmfw/ |
| D | file-format.rst | 29 | Package Header CRC | 192 Package Header CRC 195 Following the component information is a short 4-byte CRC calculated over
|
| /Linux-v5.15/Documentation/filesystems/ |
| D | xfs-self-describing-metadata.rst | 86 hence a 32 bit CRC is more than sufficient to detect multi-bit errors in 175 whether CRC validating is necessary. If it is, the CRC32c is calculated and 183 modification made to the object, After this, we calculate the CRC and insert it 195 __be32 crc; /* CRC, not logged */ 239 The code ensures that the CRC is only checked if the filesystem has CRCs enabled 240 by checking the superblock of the feature bit, and then if the CRC verifies OK 326 update the LSN field (when it was last modified) and calculate the CRC on the 332 Inodes and dquots are special snowflakes. They have per-object CRC and 335 verification and CRC calculations. The per-buffer verifiers simply perform basic 337 there are magic numbers in all the expected spots. All further CRC and [all …]
|
| /Linux-v5.15/Documentation/hwmon/ |
| D | sht15.rst | 57 * If a CRC validation fails, a soft reset command is sent, which resets 65 set it to true to enable CRC validation of the readings (default to false).
|
| /Linux-v5.15/Documentation/ABI/testing/ |
| D | sysfs-class-fpga-manager | 53 * reconfig CRC error - CRC error detected by
|
| /Linux-v5.15/lib/ |
| D | Kconfig | 126 tristate "CRC-CCITT functions" 129 modules require CRC-CCITT functions, but a module built outside 130 the kernel tree does. Such modules that use library CRC-CCITT 142 tristate "CRC calculation for the T10 Data Integrity Field" 147 kernel tree needs to calculate CRC checks for use with the 151 tristate "CRC ITU-T V.41 functions" 154 modules require CRC ITU-T V.41 functions, but a module built outside 155 the kernel tree does. Such modules that use library CRC ITU-T V.41
|
| /Linux-v5.15/drivers/net/wireless/marvell/libertas_tf/ |
| D | if_usb.h | 76 __le32 CRC; member
|
| /Linux-v5.15/drivers/net/wireless/marvell/libertas/ |
| D | if_usb.h | 86 __le32 CRC; member
|
| /Linux-v5.15/drivers/char/xilinx_hwicap/ |
| D | xilinx_hwicap.c | 121 .CRC = 0, 146 .CRC = 0, 171 .CRC = 0, 196 .CRC = 0,
|
| D | xilinx_hwicap.h | 125 u32 CRC; member
|
| /Linux-v5.15/Documentation/gpu/ |
| D | vkms.rst | 103 - kms_plane: some test cases are failing due to timeout on capturing CRC; 175 - The writeback and CRC capture operations share the use of composer_enabled 196 CRC API Improvements 199 - Optimize CRC computation ``compute_crc()`` and plane blending ``blend()``
|
| /Linux-v5.15/arch/arm/crypto/ |
| D | crc32-ce-core.S | 113 CRC .req r2 138 vmov.32 dCONSTANTl[0], CRC
|
| /Linux-v5.15/Documentation/translations/zh_CN/virt/ |
| D | ne_overview.rst | 67 还有一个EIF头,包括元数据,如magic number、eif版本、镜像大小和CRC。
|
| /Linux-v5.15/Documentation/userspace-api/media/dvb/ |
| D | dmx-set-filter.rst | 39 state whether a section should be CRC-checked, whether the filter should
|
| /Linux-v5.15/Documentation/kbuild/ |
| D | modules.rst | 455 as a simple ABI consistency check. A CRC value of the full prototype 457 CRC values contained in the kernel are compared with similar values in 470 corresponding CRC value is also stored. 474 <CRC> <Symbol> <Module> <Export Type> <Namespace> 481 For a kernel build without CONFIG_MODVERSIONS enabled, the CRC 487 2) It lists the CRC if CONFIG_MODVERSIONS is enabled.
|