The module parameter is num_prealloc_fallback_crypt_ctxs, but its MODULE_PARM_DESC() names num_prealloc_crypt_fallback_ctxs, so modinfo describes a parameter that does not exist and shows no description for the real one. Use the parameter name in the description. Fixes: 488f6682c832 ("block: blk-crypto-fallback for Inline Encryption") Assisted-by: LLM Signed-off-by: Karl Mehltretter --- block/blk-crypto-fallback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block/blk-crypto-fallback.c b/block/blk-crypto-fallback.c index 2a8f40a65158..877934db18ef 100644 --- a/block/blk-crypto-fallback.c +++ b/block/blk-crypto-fallback.c @@ -34,7 +34,7 @@ MODULE_PARM_DESC(num_keyslots, static unsigned int num_prealloc_fallback_crypt_ctxs = 128; module_param(num_prealloc_fallback_crypt_ctxs, uint, 0); -MODULE_PARM_DESC(num_prealloc_crypt_fallback_ctxs, +MODULE_PARM_DESC(num_prealloc_fallback_crypt_ctxs, "Number of preallocated bio fallback crypto contexts for blk-crypto to use during crypto API fallback"); struct bio_fallback_crypt_ctx { base-commit: 986c24e0fe44f844b44d365b71ce831947f50298 -- 2.53.0