diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2019-12-23 11:13:51 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-01-07 06:59:04 +0300 |
commit | a754bd5f1874978f55814b4498f66e4a0fd5b256 (patch) | |
tree | 175ae4f32ca79b4fba1e31735816ea6295a1f916 /block/Kconfig | |
parent | 95ed0c5b1292fb90fe100af88541a7bef6ba44ec (diff) | |
download | linux-a754bd5f1874978f55814b4498f66e4a0fd5b256.tar.xz |
block: Allow t10-pi to be modular
Currently t10-pi can only be built into the block layer which via
crc-t10dif pulls in a whole chunk of the Crypto API. In fact all
users of t10-pi work as modules and there is no reason for it to
always be built-in.
This patch adds a new hidden option for t10-pi that is selected
automatically based on BLK_DEV_INTEGRITY and whether the users
of t10-pi are built-in or not.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/Kconfig')
-rw-r--r-- | block/Kconfig | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/block/Kconfig b/block/Kconfig index c23094a14a2b..3bc76bb113a0 100644 --- a/block/Kconfig +++ b/block/Kconfig @@ -66,7 +66,6 @@ config BLK_DEV_BSGLIB config BLK_DEV_INTEGRITY bool "Block layer data integrity support" - select CRC_T10DIF if BLK_DEV_INTEGRITY ---help--- Some storage devices allow extra information to be stored/retrieved to help protect the data. The block layer @@ -77,6 +76,11 @@ config BLK_DEV_INTEGRITY T10/SCSI Data Integrity Field or the T13/ATA External Path Protection. If in doubt, say N. +config BLK_DEV_INTEGRITY_T10 + tristate + depends on BLK_DEV_INTEGRITY + select CRC_T10DIF + config BLK_DEV_ZONED bool "Zoned block device support" select MQ_IOSCHED_DEADLINE |