Commit a8b8a126 authored by Ed Tsai's avatar Ed Tsai Committed by Mikulas Patocka
Browse files

dm: Enable inline crypto passthrough for striped target



Added DM_TARGET_PASSES_CRYPTO feature to the striped target to utilize
the hardware encryption of the underlying storage devices, preventing
fallback to the crypto API.

Signed-off-by: default avatarEd Tsai <ed.tsai@mediatek.com>
Signed-off-by: default avatarMikulas Patocka <mpatocka@redhat.com>
parent 0ce46f4f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -467,7 +467,7 @@ static struct target_type stripe_target = {
	.name   = "striped",
	.version = {1, 7, 0},
	.features = DM_TARGET_PASSES_INTEGRITY | DM_TARGET_NOWAIT |
		    DM_TARGET_ATOMIC_WRITES,
		    DM_TARGET_ATOMIC_WRITES | DM_TARGET_PASSES_CRYPTO,
	.module = THIS_MODULE,
	.ctr    = stripe_ctr,
	.dtr    = stripe_dtr,