File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -482,8 +482,10 @@ static struct target_type flakey_target = {
482
482
.name = "flakey" ,
483
483
.version = {1 , 5 , 0 },
484
484
#ifdef CONFIG_BLK_DEV_ZONED
485
- .features = DM_TARGET_ZONED_HM ,
485
+ .features = DM_TARGET_ZONED_HM | DM_TARGET_PASSES_CRYPTO ,
486
486
.report_zones = flakey_report_zones ,
487
+ #else
488
+ .features = DM_TARGET_PASSES_CRYPTO ,
487
489
#endif
488
490
.module = THIS_MODULE ,
489
491
.ctr = flakey_ctr ,
Original file line number Diff line number Diff line change @@ -229,10 +229,11 @@ static struct target_type linear_target = {
229
229
.version = {1 , 4 , 0 },
230
230
#ifdef CONFIG_BLK_DEV_ZONED
231
231
.features = DM_TARGET_PASSES_INTEGRITY | DM_TARGET_NOWAIT |
232
- DM_TARGET_ZONED_HM ,
232
+ DM_TARGET_ZONED_HM | DM_TARGET_PASSES_CRYPTO ,
233
233
.report_zones = linear_report_zones ,
234
234
#else
235
- .features = DM_TARGET_PASSES_INTEGRITY | DM_TARGET_NOWAIT ,
235
+ .features = DM_TARGET_PASSES_INTEGRITY | DM_TARGET_NOWAIT |
236
+ DM_TARGET_PASSES_CRYPTO ,
236
237
#endif
237
238
.module = THIS_MODULE ,
238
239
.ctr = linear_ctr ,
You can’t perform that action at this time.
0 commit comments