diff options
author | Aaron Tomlin <atomlin@redhat.com> | 2022-03-22 15:03:41 +0100 |
---|---|---|
committer | Luis Chamberlain <mcgrof@kernel.org> | 2022-04-05 17:43:04 +0200 |
commit | 0ffc40f6c8ab684e694774ebc835b198398129a8 (patch) | |
tree | 91ed41765f16deb8d2b41ba6077b973a0f6a9b35 /kernel/module/Makefile | |
parent | module: kallsyms: Fix suspicious rcu usage (diff) | |
download | linux-0ffc40f6c8ab684e694774ebc835b198398129a8.tar.xz linux-0ffc40f6c8ab684e694774ebc835b198398129a8.zip |
module: Move procfs support into a separate file
No functional change.
This patch migrates code that allows one to generate a
list of loaded/or linked modules via /proc when procfs
support is enabled into kernel/module/procfs.c.
Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Aaron Tomlin <atomlin@redhat.com>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Diffstat (limited to 'kernel/module/Makefile')
-rw-r--r-- | kernel/module/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/module/Makefile b/kernel/module/Makefile index 9901bed3ab5b..94296c98a67f 100644 --- a/kernel/module/Makefile +++ b/kernel/module/Makefile @@ -15,3 +15,4 @@ obj-$(CONFIG_MODULES_TREE_LOOKUP) += tree_lookup.o obj-$(CONFIG_STRICT_MODULE_RWX) += strict_rwx.o obj-$(CONFIG_DEBUG_KMEMLEAK) += debug_kmemleak.o obj-$(CONFIG_KALLSYMS) += kallsyms.o +obj-$(CONFIG_PROC_FS) += procfs.o |