The quilt patch titled Subject: crypto: arm/xor - add missing MODULE_DESCRIPTION() macro has been removed from the -mm tree. Its filename was crypto-arm-xor-add-missing-module_description-macro.patch
This patch was dropped because it was merged into the mm-nonmm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Jeff Johnson <quic_jjohn...@quicinc.com> Subject: crypto: arm/xor - add missing MODULE_DESCRIPTION() macro Date: Tue, 30 Jul 2024 07:43:18 -0700 Patch series "treewide: add missing MODULE_DESCRIPTION() macros". Since commit 1fffe7a34c89 ("script: modpost: emit a warning when the description is missing"), a module without a MODULE_DESCRIPTION() will result in a warning when built with make W=1. Recently, multiple developers have been eradicating these warnings treewide, and I personally submitted almost 300 patches over the past few months. Almost all of my patches landed by 6.11-rc1, either by being merged in a 6.10-rc or by being merged in the 6.11 merge window. However, a few of my patches did not land. This patch (of 5): With ARCH=arm and CONFIG_KERNEL_MODE_NEON=y, make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in arch/arm/lib/xor-neon.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Link: https://lkml.kernel.org/r/20240730-module_description_orphans-v1-0-709408807...@quicinc.com Link: https://lkml.kernel.org/r/20240730-module_description_orphans-v1-1-709408807...@quicinc.com Signed-off-by: Jeff Johnson <quic_jjohn...@quicinc.com> Cc: Alexandre Torgue <alexandre.tor...@foss.st.com> Cc: Alistar Popple <alist...@popple.id.au> Cc: Andrew Jeffery <and...@codeconstruct.com.au> Cc: Andy Lutomirski <l...@kernel.org> Cc: Arnd Bergmann <a...@arndb.de> Cc: Boqun Feng <boqun.f...@gmail.com> Cc: Borislav Petkov <b...@alien8.de> Cc: Christophe Leroy <christophe.le...@csgroup.eu> Cc: Dave Hansen <dave.han...@linux.intel.com> Cc: Eddie James <eaja...@linux.ibm.com> Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org> Cc: "H. Peter Anvin" <h...@zytor.com> Cc: Ingo Molnar <mi...@redhat.com> Cc: Jeremy Kerr <j...@ozlabs.org> Cc: Joel Stanley <j...@jms.id.au> Cc: Karol Herbst <karolher...@gmail.com> Cc: Masami Hiramatsu <mhira...@kernel.org> Cc: Maxime Coquelin <mcoquelin.st...@gmail.com> Cc: Michael Ellerman <m...@ellerman.id.au> (powerpc) Cc: Naveen N Rao <nav...@kernel.org> Cc: Nicholas Piggin <npig...@gmail.com> Cc: Nouveau <nouveau@lists.freedesktop.org> Cc: Pekka Paalanen <ppaala...@gmail.com> Cc: Peter Zijlstra <pet...@infradead.org> Cc: Rafael J. Wysocki <raf...@kernel.org> Cc: Russell King <li...@armlinux.org.uk> Cc: Steven Rostedt (Google) <rost...@goodmis.org> Cc: Thomas Gleixner <t...@linutronix.de> Cc: Viresh Kumar <viresh.ku...@linaro.org> Cc: Waiman Long <long...@redhat.com> Cc: Will Deacon <w...@kernel.org> Signed-off-by: Andrew Morton <a...@linux-foundation.org> --- arch/arm/lib/xor-neon.c | 1 + 1 file changed, 1 insertion(+) --- a/arch/arm/lib/xor-neon.c~crypto-arm-xor-add-missing-module_description-macro +++ a/arch/arm/lib/xor-neon.c @@ -8,6 +8,7 @@ #include <linux/raid/xor.h> #include <linux/module.h> +MODULE_DESCRIPTION("NEON accelerated XOR implementation"); MODULE_LICENSE("GPL"); #ifndef __ARM_NEON__ _ Patches currently in -mm which might be from quic_jjohn...@quicinc.com are