diff options
author | Mike Snitzer <snitzer@redhat.com> | 2017-05-04 10:32:07 -0400 |
---|---|---|
committer | Mike Snitzer <snitzer@redhat.com> | 2017-05-04 10:58:55 -0400 |
commit | 7ab84db64f119e03b2c42ed919dfee7d6cf0dc3c (patch) | |
tree | 5dc76758eac0d4cb069d230b176d4595b368e26a | |
parent | 97dfb20309e0ad4fa22deb5bc5ed85604d5014ef (diff) |
dm integrity: improve the Kconfig help text for DM_INTEGRITY
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Signed-off-by: Milan Broz <gmazyland@gmail.com>
-rw-r--r-- | drivers/md/Kconfig | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/drivers/md/Kconfig b/drivers/md/Kconfig index 7468a22f9d10..23dbf20a8999 100644 --- a/drivers/md/Kconfig +++ b/drivers/md/Kconfig | |||
@@ -502,13 +502,24 @@ config DM_LOG_WRITES | |||
502 | If unsure, say N. | 502 | If unsure, say N. |
503 | 503 | ||
504 | config DM_INTEGRITY | 504 | config DM_INTEGRITY |
505 | tristate "Integrity target" | 505 | tristate "Integrity target support" |
506 | depends on BLK_DEV_DM | 506 | depends on BLK_DEV_DM |
507 | select BLK_DEV_INTEGRITY | 507 | select BLK_DEV_INTEGRITY |
508 | select DM_BUFIO | 508 | select DM_BUFIO |
509 | select CRYPTO | 509 | select CRYPTO |
510 | select ASYNC_XOR | 510 | select ASYNC_XOR |
511 | ---help--- | 511 | ---help--- |
512 | This is the integrity target. | 512 | This device-mapper target emulates a block device that has |
513 | additional per-sector tags that can be used for storing | ||
514 | integrity information. | ||
515 | |||
516 | This integrity target is used with the dm-crypt target to | ||
517 | provide authenticated disk encryption or it can be used | ||
518 | standalone. | ||
519 | |||
520 | To compile this code as a module, choose M here: the module will | ||
521 | be called dm-integrity. | ||
522 | |||
523 | If unsure, say N. | ||
513 | 524 | ||
514 | endif # MD | 525 | endif # MD |