The patch titled profile_likely: export do_check_likely has been added to the -mm tree. Its filename is profile_likely-export-do_check_likely.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: profile_likely: export do_check_likely From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> I see MODPOST warnings for all modules in some (random) configs; e.g.: (This is a short list; I see >100 of these.) WARNING: "do_check_likely" [net/sched/cls_basic.ko] undefined! WARNING: "do_check_likely" [net/netfilter/x_tables.ko] undefined! WARNING: "do_check_likely" [net/key/af_key.ko] undefined! WARNING: "do_check_likely" [kernel/rcutorture.ko] undefined! WARNING: "do_check_likely" [fs/xfs/xfs.ko] undefined! WARNING: "do_check_likely" [fs/sysv/sysv.ko] undefined! WARNING: "do_check_likely" [fs/reiserfs/reiserfs.ko] undefined! WARNING: "do_check_likely" [fs/ntfs/ntfs.ko] undefined! WARNING: "do_check_likely" [fs/minix/minix.ko] undefined! Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Cc: Daniel Walker <dwalker@xxxxxxxxxx> Cc: Hua Zhong <hzhong@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- lib/likely_prof.c | 2 ++ 1 files changed, 2 insertions(+) diff -puN lib/likely_prof.c~profile_likely-export-do_check_likely lib/likely_prof.c --- a/lib/likely_prof.c~profile_likely-export-do_check_likely +++ a/lib/likely_prof.c @@ -10,6 +10,7 @@ */ #include <linux/init.h> +#include <linux/module.h> #include <linux/types.h> #include <linux/fs.h> #include <linux/seq_file.h> @@ -50,6 +51,7 @@ int do_check_likely(struct likeliness *l return ret; } +EXPORT_SYMBOL(do_check_likely); static void * lp_seq_start(struct seq_file *out, loff_t *pos) { _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are origin.patch debugfs-add-header-file.patch git-acpi.patch korg1212-fix-printk-format-warning.patch cpufreq-select-consistently-re-2619-rc5-mm1.patch git-ieee1394.patch git-infiniband.patch mtd-fix-printk-format-warning.patch git-ocfs2.patch parisc-fix-module_param-iommu-permission.patch fuse-fix-compile-without-config_block.patch tifm-fix-null-ptr-and-style.patch kconfig-printk_time-depends-on-printk.patch i2o-handle-__copy_from_user.patch generic-bug-implementation-handle-bug=n.patch visws-sgivwfb-is-module-needs-exports.patch extend-notifier_call_chain-to-count-nr_calls-made-fixes.patch profile_likely-export-do_check_likely.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html