From: Damien Le Moal <dlemoal@xxxxxxxxxx> commit 1c0b3fca381bf879e2168b362692f83808677f95 upstream. The description of the fua module parameter is defined using MODULE_PARM_DESC() with the first argument passed being "zoned". That is the wrong name, obviously. Fix that by using the correct "fua" parameter name so that "modinfo null_blk" displays correct information. Fixes: f4f84586c8b9 ("null_blk: Introduce fua attribute") Cc: stable@xxxxxxxxxxxxxxx Signed-off-by: Damien Le Moal <dlemoal@xxxxxxxxxx> Reviewed-by: Christoph Hellwig <hch@xxxxxx> Reviewed-by: Chaitanya Kulkarni <kch@xxxxxxxxxx> Link: https://lore.kernel.org/r/20240702073234.206458-1-dlemoal@xxxxxxxxxx Signed-off-by: Jens Axboe <axboe@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/block/null_blk/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/block/null_blk/main.c b/drivers/block/null_blk/main.c index 83a4ebe4763a..5de9ca4eceb4 100644 --- a/drivers/block/null_blk/main.c +++ b/drivers/block/null_blk/main.c @@ -227,7 +227,7 @@ MODULE_PARM_DESC(mbps, "Cache size in MiB for memory-backed device. Default: 0 ( static bool g_fua = true; module_param_named(fua, g_fua, bool, 0444); -MODULE_PARM_DESC(zoned, "Enable/disable FUA support when cache_size is used. Default: true"); +MODULE_PARM_DESC(fua, "Enable/disable FUA support when cache_size is used. Default: true"); static unsigned int g_mbps; module_param_named(mbps, g_mbps, uint, 0444); -- 2.45.2 Patches currently in stable-queue which might be from dlemoal@xxxxxxxxxx are queue-6.10/block-call-.limit_depth-after-.hctx-has-been-set.patch queue-6.10/ubd-untagle-discard-vs-write-zeroes-not-support-hand.patch queue-6.10/ata-libata-scsi-do-not-overwrite-valid-sense-data-when-ck_cond-1.patch queue-6.10/dm-call-dm_revalidate_zones-after-setting-the-queue-.patch queue-6.10/block-mq-deadline-fix-the-tag-reservation-code.patch queue-6.10/null_blk-fix-description-of-the-fua-parameter.patch