kernel: switch crc32 implementation back to default
Commit ec885796c0
switched the crc32 implementation from default to
byte-at-a-time algorithm, which runs slower but consumes less memory.
A decade has passed, and we have already abandoned targets that had
small memory, so switch it back to default for faster speed.
Signed-off-by: Qingfang Deng <qingfang.deng@siflower.com.cn>
This commit is contained in:
parent
769c933069
commit
e5dc16e60d
3 changed files with 6 additions and 6 deletions
|
@ -1043,10 +1043,10 @@ CONFIG_CRAMFS_BLOCKDEV=y
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
CONFIG_CRC32=y
|
CONFIG_CRC32=y
|
||||||
# CONFIG_CRC32_BIT is not set
|
# CONFIG_CRC32_BIT is not set
|
||||||
CONFIG_CRC32_SARWATE=y
|
# CONFIG_CRC32_SARWATE is not set
|
||||||
# CONFIG_CRC32_SELFTEST is not set
|
# CONFIG_CRC32_SELFTEST is not set
|
||||||
# CONFIG_CRC32_SLICEBY4 is not set
|
# CONFIG_CRC32_SLICEBY4 is not set
|
||||||
# CONFIG_CRC32_SLICEBY8 is not set
|
CONFIG_CRC32_SLICEBY8=y
|
||||||
# CONFIG_CRC4 is not set
|
# CONFIG_CRC4 is not set
|
||||||
# CONFIG_CRC64 is not set
|
# CONFIG_CRC64 is not set
|
||||||
# CONFIG_CRC7 is not set
|
# CONFIG_CRC7 is not set
|
||||||
|
|
|
@ -1102,10 +1102,10 @@ CONFIG_CRAMFS_BLOCKDEV=y
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
CONFIG_CRC32=y
|
CONFIG_CRC32=y
|
||||||
# CONFIG_CRC32_BIT is not set
|
# CONFIG_CRC32_BIT is not set
|
||||||
CONFIG_CRC32_SARWATE=y
|
# CONFIG_CRC32_SARWATE is not set
|
||||||
# CONFIG_CRC32_SELFTEST is not set
|
# CONFIG_CRC32_SELFTEST is not set
|
||||||
# CONFIG_CRC32_SLICEBY4 is not set
|
# CONFIG_CRC32_SLICEBY4 is not set
|
||||||
# CONFIG_CRC32_SLICEBY8 is not set
|
CONFIG_CRC32_SLICEBY8=y
|
||||||
# CONFIG_CRC4 is not set
|
# CONFIG_CRC4 is not set
|
||||||
# CONFIG_CRC64 is not set
|
# CONFIG_CRC64 is not set
|
||||||
# CONFIG_CRC64_ROCKSOFT is not set
|
# CONFIG_CRC64_ROCKSOFT is not set
|
||||||
|
|
|
@ -1004,10 +1004,10 @@ CONFIG_CRAMFS_BLOCKDEV=y
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
CONFIG_CRC32=y
|
CONFIG_CRC32=y
|
||||||
# CONFIG_CRC32_BIT is not set
|
# CONFIG_CRC32_BIT is not set
|
||||||
CONFIG_CRC32_SARWATE=y
|
# CONFIG_CRC32_SARWATE is not set
|
||||||
# CONFIG_CRC32_SELFTEST is not set
|
# CONFIG_CRC32_SELFTEST is not set
|
||||||
# CONFIG_CRC32_SLICEBY4 is not set
|
# CONFIG_CRC32_SLICEBY4 is not set
|
||||||
# CONFIG_CRC32_SLICEBY8 is not set
|
CONFIG_CRC32_SLICEBY8=y
|
||||||
# CONFIG_CRC4 is not set
|
# CONFIG_CRC4 is not set
|
||||||
# CONFIG_CRC64 is not set
|
# CONFIG_CRC64 is not set
|
||||||
# CONFIG_CRC64_ROCKSOFT is not set
|
# CONFIG_CRC64_ROCKSOFT is not set
|
||||||
|
|
Loading…
Reference in a new issue