]> www.infradead.org Git - users/jedix/linux-maple.git/commit
lib/crc32: make crc32c() go directly to lib
authorEric Biggers <ebiggers@google.com>
Mon, 2 Dec 2024 01:08:40 +0000 (17:08 -0800)
committerEric Biggers <ebiggers@google.com>
Mon, 2 Dec 2024 01:23:02 +0000 (17:23 -0800)
commit38a9a5121c3bcf2ed857430a92e493568b247c35
tree0c3b00d05b9fd06890f530ac7aa9c5c517ed9773
parentcc354fa7f0160a96896a3b8d7f298a036e3b8602
lib/crc32: make crc32c() go directly to lib

Now that the lower level __crc32c_le() library function is optimized for
each architecture, make crc32c() just call that instead of taking an
inefficient and error-prone detour through the shash API.

Note: a future cleanup should make crc32c_le() be the actual library
function instead of __crc32c_le().  That will require updating callers
of __crc32c_le() to use crc32c_le() instead, and updating callers of
crc32c_le() that expect a 'const void *' arg to expect 'const u8 *'
instead.  Similarly, a future cleanup should remove LIBCRC32C by making
everyone who is selecting it just select CRC32 directly instead.

Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
Link: https://lore.kernel.org/r/20241202010844.144356-16-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>
include/linux/crc32c.h
lib/Kconfig
lib/Makefile
lib/libcrc32c.c [deleted file]