From: Venkat Rao Bagalkote Date: Fri, 10 Apr 2026 15:02:48 +0000 (+0530) Subject: smb: client: add missing MODULE_DESCRIPTION() to smb1maperror_test X-Git-Tag: ceph-for-7.1-rc4~314^2~6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=bc1a64d23641669b60d35dfaed77666a1983bad5;p=ceph-client.git smb: client: add missing MODULE_DESCRIPTION() to smb1maperror_test On the latest linux-next following modpost warning is reported: WARNING: modpost: missing MODULE_DESCRIPTION() in fs/smb/client/smb1maperror_test.o Add MODULE_DESCRIPTION() to the test module to fix the warning. Reviewed-by: Saket Kumar Bhaskar Reviewed-by: ChenXiaoSong Signed-off-by: Venkat Rao Bagalkote Signed-off-by: Steve French --- diff --git a/fs/smb/client/smb1maperror_test.c b/fs/smb/client/smb1maperror_test.c index 820c0dd3bcce..2caaf11228ef 100644 --- a/fs/smb/client/smb1maperror_test.c +++ b/fs/smb/client/smb1maperror_test.c @@ -74,3 +74,4 @@ static struct kunit_suite maperror_suite = { kunit_test_suite(maperror_suite); MODULE_LICENSE("GPL"); +MODULE_DESCRIPTION("KUnit tests of SMB1 maperror");