This is a note to let you know that I've just added the patch titled null_blk: Fix the WARNING: modpost: missing MODULE_DESCRIPTION() to the 6.9-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: null_blk-fix-the-warning-modpost-missing-module_desc.patch and it can be found in the queue-6.9 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit 9b760a024c38abeae81894b4c96985e2c88581ac Author: Zhu Yanjun <yanjun.zhu@xxxxxxxxx> Date: Mon May 6 09:55:38 2024 +0200 null_blk: Fix the WARNING: modpost: missing MODULE_DESCRIPTION() [ Upstream commit 9e6727f824edcdb8fdd3e6e8a0862eb49546e1cd ] No functional changes intended. Fixes: f2298c0403b0 ("null_blk: multi queue aware block test driver") Signed-off-by: Zhu Yanjun <yanjun.zhu@xxxxxxxxx> Reviewed-by: Chaitanya Kulkarni <kch@xxxxxxxxxx> Link: https://lore.kernel.org/r/20240506075538.6064-1-yanjun.zhu@xxxxxxxxx Signed-off-by: Jens Axboe <axboe@xxxxxxxxx> Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/drivers/block/null_blk/main.c b/drivers/block/null_blk/main.c index eed63f95e89d0..14ffda1ffe6c3 100644 --- a/drivers/block/null_blk/main.c +++ b/drivers/block/null_blk/main.c @@ -2121,4 +2121,5 @@ module_init(null_init); module_exit(null_exit); MODULE_AUTHOR("Jens Axboe <axboe@xxxxxxxxx>"); +MODULE_DESCRIPTION("multi queue aware block test driver"); MODULE_LICENSE("GPL");