Commit 3db564b4 authored by Satya Tangirala's avatar Satya Tangirala Committed by Mike Snitzer
Browse files

dm: set DM_TARGET_PASSES_CRYPTO feature for some targets



dm-linear and dm-flakey obviously can pass through inline crypto support.

Co-developed-by: default avatarEric Biggers <ebiggers@google.com>
Signed-off-by: default avatarEric Biggers <ebiggers@google.com>
Signed-off-by: default avatarSatya Tangirala <satyat@google.com>
Signed-off-by: default avatarMike Snitzer <snitzer@redhat.com>
parent 9355a9eb
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -482,8 +482,10 @@ static struct target_type flakey_target = {
	.name   = "flakey",
	.version = {1, 5, 0},
#ifdef CONFIG_BLK_DEV_ZONED
	.features = DM_TARGET_ZONED_HM,
	.features = DM_TARGET_ZONED_HM | DM_TARGET_PASSES_CRYPTO,
	.report_zones = flakey_report_zones,
#else
	.features = DM_TARGET_PASSES_CRYPTO,
#endif
	.module = THIS_MODULE,
	.ctr    = flakey_ctr,
+3 −2
Original line number Diff line number Diff line
@@ -229,10 +229,11 @@ static struct target_type linear_target = {
	.version = {1, 4, 0},
#ifdef CONFIG_BLK_DEV_ZONED
	.features = DM_TARGET_PASSES_INTEGRITY | DM_TARGET_NOWAIT |
		    DM_TARGET_ZONED_HM,
		    DM_TARGET_ZONED_HM | DM_TARGET_PASSES_CRYPTO,
	.report_zones = linear_report_zones,
#else
	.features = DM_TARGET_PASSES_INTEGRITY | DM_TARGET_NOWAIT,
	.features = DM_TARGET_PASSES_INTEGRITY | DM_TARGET_NOWAIT |
		    DM_TARGET_PASSES_CRYPTO,
#endif
	.module = THIS_MODULE,
	.ctr    = linear_ctr,