On Tue, Dec 28, 2021 at 09:30:34PM +0000, Aaron Tomlin wrote: > diff --git a/kernel/module/Makefile b/kernel/module/Makefile > index 9d593362156d..95fad95a0549 100644 > --- a/kernel/module/Makefile > +++ b/kernel/module/Makefile > @@ -8,3 +8,4 @@ obj-$(CONFIG_MODULE_SIG) += signing.o > obj-$(CONFIG_MODULE_SIG_FORMAT) += signature.o > obj-$(CONFIG_LIVEPATCH) += livepatch.o > obj-$(CONFIG_MODULES_TREE_LOOKUP) += tree_lookup.o > +obj-$(CONFIG_ARCH_HAS_STRICT_MODULE_RWX) += arch_strict_rwx.o > diff --git a/kernel/module/arch_strict_rwx.c b/kernel/module/arch_strict_rwx.c > new file mode 100644 > index 000000000000..68e970671ec5 > --- /dev/null > +++ b/kernel/module/arch_strict_rwx.c > @@ -0,0 +1,44 @@ > +// SPDX-License-Identifier: GPL-2.0-or-later > +/* > + * kernel/module/arch_strict_rwx.c - module arch strict rwx No need to repeat the name of the file, a simple: + * module arch strict rwx Would do it. Please get 0day to test your git tree as you work on it, and before posting patches ensure they get tested by 0day, so we run into less issues once merged into modules-next. Luis