From mboxrd@z Thu Jan 1 00:00:00 1970 From: minwoo.im.dev@gmail.com (Minwoo Im) Date: Fri, 12 Jul 2019 00:13:38 +0900 Subject: [PATCH] nvme: tcp: depends on CRYPTO_HASH2 for nvme-tcp Message-ID: <20190711151338.16810-1-minwoo.im.dev@gmail.com> 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_HASH2. Cc: Christoph Hellwig Cc: Keith Busch Cc: Sagi Grimberg Cc: Jens Axboe Signed-off-by: Minwoo Im --- drivers/nvme/host/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/nvme/host/Kconfig b/drivers/nvme/host/Kconfig index ec43ac9199e2..711d3ea5143f 100644 --- a/drivers/nvme/host/Kconfig +++ b/drivers/nvme/host/Kconfig @@ -63,6 +63,7 @@ config NVME_TCP tristate "NVM Express over Fabrics TCP host driver" depends on INET depends on BLK_DEV_NVME + depends on CRYPTO_HASH2 select NVME_FABRICS help This provides support for the NVMe over Fabrics protocol using -- 2.17.1