diff options
author | Eric Biggers <ebiggers@google.com> | 2024-12-01 17:08:38 -0800 |
---|---|---|
committer | Eric Biggers <ebiggers@google.com> | 2024-12-01 17:23:01 -0800 |
commit | 55d1ecceb8d6a5c9ceff7c6528075bd0ce4e8366 (patch) | |
tree | 8ed009b46e69c5a14ce0025dbe93fee584bef481 /drivers/target | |
parent | 1e6b72e60a5a16ddda9c0669da7538f497838d0a (diff) |
x86/crc32: expose CRC32 functions through lib
Move the x86 CRC32 assembly code into the lib directory and wire it up
to the library interface. This allows it to be used without going
through the crypto API. It remains usable via the crypto API too via
the shash algorithms that use the library interface. Thus all the
arch-specific "shash" code becomes unnecessary and is removed.
Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
Link: https://lore.kernel.org/r/20241202010844.144356-14-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>
Diffstat (limited to 'drivers/target')
-rw-r--r-- | drivers/target/iscsi/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/target/iscsi/Kconfig b/drivers/target/iscsi/Kconfig index 922b207bc69d..1c0517a12571 100644 --- a/drivers/target/iscsi/Kconfig +++ b/drivers/target/iscsi/Kconfig @@ -4,7 +4,6 @@ config ISCSI_TARGET depends on INET select CRYPTO select CRYPTO_CRC32C - select CRYPTO_CRC32C_INTEL if X86 help Say M to enable the SCSI target mode stack. A SCSI target mode stack is software that makes local storage available over a storage network |