The patch titled Subject: firmware_loader-move-firmware-sysctl-to-its-own-files-fix has been removed from the -mm tree. Its filename was firmware_loader-move-firmware-sysctl-to-its-own-files-fix.patch This patch was dropped because it was folded into firmware_loader-move-firmware-sysctl-to-its-own-files.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: firmware_loader-move-firmware-sysctl-to-its-own-files-fix export register_firmware_config_sysctl and unregister_firmware_config_sysctl to modules ERROR: modpost: "register_firmware_config_sysctl" [drivers/base/firmware_loader/firmware_class.ko] undefined! ERROR: modpost: "unregister_firmware_config_sysctl" [drivers/base/firmware_loader/firmware_class.ko] undefined! Cc: Luis Chamberlain <mcgrof@xxxxxxxxxx> Reported-by: kernel test robot <lkp@xxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/base/firmware_loader/fallback_table.c | 4 ++++ 1 file changed, 4 insertions(+) --- a/drivers/base/firmware_loader/fallback_table.c~firmware_loader-move-firmware-sysctl-to-its-own-files-fix +++ a/drivers/base/firmware_loader/fallback_table.c @@ -4,6 +4,7 @@ #include <linux/kconfig.h> #include <linux/list.h> #include <linux/slab.h> +#include <linux/module.h> #include <linux/security.h> #include <linux/highmem.h> #include <linux/umh.h> @@ -56,10 +57,13 @@ int register_firmware_config_sysctl(void return -ENOMEM; return 0; } +EXPORT_SYMBOL(register_firmware_config_sysctl); void unregister_firmware_config_sysctl(void) { unregister_sysctl_table(firmware_config_sysct_table_header); firmware_config_sysct_table_header = NULL; } +EXPORT_SYMBOL(unregister_firmware_config_sysctl); + #endif /* CONFIG_SYSCTL */ _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are firmware_loader-move-firmware-sysctl-to-its-own-files.patch firmware_loader-move-firmware-sysctl-to-its-own-files-fix-fix.patch sysctl-add-helper-to-register-a-sysctl-mount-point-fix.patch sysctl-move-maxolduid-as-a-sysctl-specific-const-fix.patch proc-remove-pde_data-completely-fix.patch proc-remove-pde_data-completely-fix-fix.patch mm-remove-cleancache-fix.patch mm-simplify-try_to_unuse-fix.patch mm.patch documentation-vm-page_ownerrst-update-the-documentation-fix.patch mm-mempolicy-convert-from-atomic_t-to-refcount_t-on-mempolicy-refcnt-fix.patch arch-x86-include-asm-pgtableh-needs-spinlockh.patch mutex-subsystem-synchro-test-module-fix.patch kernel-forkc-export-kernel_thread-to-modules.patch