diff options
author | Minwoo Im <[email protected]> | 2019-07-14 17:18:42 +0900 |
---|---|---|
committer | Sagi Grimberg <[email protected]> | 2019-08-29 12:55:01 -0700 |
commit | 79fd751d61aa8b9979d51357236890d69989ba04 (patch) | |
tree | 5b4f62e0cb70172f856433cbec0fffb832e5ccf1 | |
parent | b5b0504878b884fb38e8983f1637a7be1d07fad3 (diff) |
nvme: tcp: selects CRYPTO_CRC32C for nvme-tcp
The tcp host module is now taking those APIs from crypto ahash:
(1) crypto_ahash_final()
(2) crypto_ahash_digest()
(3) crypto_alloc_ahash()
nvme-tcp should depends on CRYPTO_CRC32C.
Cc: Christoph Hellwig <[email protected]>
Cc: Keith Busch <[email protected]>
Cc: Jens Axboe <[email protected]>
Reviewed-by: Sagi Grimberg <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Signed-off-by: Minwoo Im <[email protected]>
Signed-off-by: Sagi Grimberg <[email protected]>
-rw-r--r-- | drivers/nvme/host/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/nvme/host/Kconfig b/drivers/nvme/host/Kconfig index ec43ac9199e2..2b36f052bfb9 100644 --- a/drivers/nvme/host/Kconfig +++ b/drivers/nvme/host/Kconfig @@ -64,6 +64,7 @@ config NVME_TCP depends on INET depends on BLK_DEV_NVME select NVME_FABRICS + select CRYPTO_CRC32C help This provides support for the NVMe over Fabrics protocol using the TCP transport. This allows you to use remote block devices |