mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-27 06:50:37 +00:00

Now that the crc32c() library function directly takes advantage of architecture-specific optimizations, it is unnecessary to go through the crypto API. Just use crc32c(). This is much simpler, and it improves performance due to eliminating the crypto API overhead. Reviewed-by: Ard Biesheuvel <ardb@kernel.org> Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com> Link: https://lore.kernel.org/r/20241202010844.144356-20-ebiggers@kernel.org Signed-off-by: Eric Biggers <ebiggers@google.com>
16 lines
561 B
Plaintext
16 lines
561 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config ISCSI_TARGET
|
|
tristate "SCSI Target Mode Stack"
|
|
depends on INET
|
|
select CRC32
|
|
select CRYPTO
|
|
select CRYPTO_HASH
|
|
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
|
|
to a SCSI initiator system. The supported storage network technologies
|
|
include iSCSI, Fibre Channel and the SCSI RDMA Protocol (SRP).
|
|
Configuration of the SCSI target mode stack happens through configfs.
|
|
|
|
source "drivers/target/iscsi/cxgbit/Kconfig"
|