The patch titled Subject: kfifo: add missing MODULE_DESCRIPTION() macros has been added to the -mm mm-nonmm-unstable branch. Its filename is kfifo-add-missing-module_description-macros.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/kfifo-add-missing-module_description-macros.patch This patch will later appear in the mm-nonmm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Jeff Johnson <quic_jjohnson@xxxxxxxxxxx> Subject: kfifo: add missing MODULE_DESCRIPTION() macros Date: Sat, 1 Jun 2024 17:50:27 -0700 make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in samples/kfifo/bytestream-example.o WARNING: modpost: missing MODULE_DESCRIPTION() in samples/kfifo/dma-example.o WARNING: modpost: missing MODULE_DESCRIPTION() in samples/kfifo/inttype-example.o WARNING: modpost: missing MODULE_DESCRIPTION() in samples/kfifo/record-example.o Add the missing invocations of the MODULE_DESCRIPTION() macro. Link: https://lkml.kernel.org/r/20240601-md-samples-kfifo-v1-1-de34345c5fd8@xxxxxxxxxxx Signed-off-by: Jeff Johnson <quic_jjohnson@xxxxxxxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Cc: Stefani Seibold <stefani@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- samples/kfifo/bytestream-example.c | 1 + samples/kfifo/dma-example.c | 1 + samples/kfifo/inttype-example.c | 1 + samples/kfifo/record-example.c | 1 + 4 files changed, 4 insertions(+) --- a/samples/kfifo/bytestream-example.c~kfifo-add-missing-module_description-macros +++ a/samples/kfifo/bytestream-example.c @@ -191,5 +191,6 @@ static void __exit example_exit(void) module_init(example_init); module_exit(example_exit); +MODULE_DESCRIPTION("Sample kfifo byte stream implementation"); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Stefani Seibold <stefani@xxxxxxxxxxx>"); --- a/samples/kfifo/dma-example.c~kfifo-add-missing-module_description-macros +++ a/samples/kfifo/dma-example.c @@ -138,5 +138,6 @@ static void __exit example_exit(void) module_init(example_init); module_exit(example_exit); +MODULE_DESCRIPTION("Sample fifo dma implementation"); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Stefani Seibold <stefani@xxxxxxxxxxx>"); --- a/samples/kfifo/inttype-example.c~kfifo-add-missing-module_description-macros +++ a/samples/kfifo/inttype-example.c @@ -182,5 +182,6 @@ static void __exit example_exit(void) module_init(example_init); module_exit(example_exit); +MODULE_DESCRIPTION("Sample kfifo int type implementation"); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Stefani Seibold <stefani@xxxxxxxxxxx>"); --- a/samples/kfifo/record-example.c~kfifo-add-missing-module_description-macros +++ a/samples/kfifo/record-example.c @@ -198,5 +198,6 @@ static void __exit example_exit(void) module_init(example_init); module_exit(example_exit); +MODULE_DESCRIPTION("Sample dynamic sized record fifo implementation"); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Stefani Seibold <stefani@xxxxxxxxxxx>"); _ Patches currently in -mm which might be from quic_jjohnson@xxxxxxxxxxx are mm-hwpoison-add-module_description.patch mm-dmapool-add-module_description.patch mm-kfence-add-module_description.patch mm-zsmalloc-add-module_description.patch kmemleak-test-add-missing-module_description-macro.patch test_xarray-add-missing-module_description-macro.patch ubsan-add-missing-module_description-macro.patch test_maple_tree-add-the-missing-module_description-macro.patch lib-test_hmm-add-missing-module_description-macro.patch backtracetest-add-module_description.patch lib-ts-add-missing-module_description-macros.patch kunit-fortify-add-missing-module_description-macros.patch kunit-add-missing-module_description-macros-for-lib-_testko.patch lib-asn1_encoder-add-missing-module_description-macro.patch kunit-add-missing-module_description-macros-to-lib-_kunitc.patch uuid-add-missing-module_description-macro.patch siphash-add-missing-module_description-macro.patch lib-test_kmod-add-missing-module_description-macro.patch lib-test_linear_ranges-add-missing-module_description-macro.patch kunit-add-missing-module_description-macros-for-lib-test_ko.patch kfifo-add-missing-module_description-macros.patch