The patch titled add WEAK() for creating weak asm labels has been added to the -mm tree. Its filename is add-weak-for-creating-weak-asm-labels.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: add WEAK() for creating weak asm labels From: Rusty Russell <rusty@xxxxxxxxxxxxxxx> Signed-off-by: Jeremy Fitzhardinge <jeremy@xxxxxxxxxxxxx> Signed-off-by: Rusty Russell <rusty@xxxxxxxxxxxxxxx> Acked-by: H. Peter Anvin <hpa@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/linkage.h | 6 ++++++ 1 file changed, 6 insertions(+) diff -puN include/linux/linkage.h~add-weak-for-creating-weak-asm-labels include/linux/linkage.h --- a/include/linux/linkage.h~add-weak-for-creating-weak-asm-labels +++ a/include/linux/linkage.h @@ -34,6 +34,12 @@ name: #endif +#ifndef WEAK +#define WEAK(name) \ + .weak name; \ + name: +#endif + #define KPROBE_ENTRY(name) \ .pushsection .kprobes.text, "ax"; \ ENTRY(name) _ Patches currently in -mm which might be from rusty@xxxxxxxxxxxxxxx are origin.patch remove-unsafe-from-module-struct.patch delay-creation-of-khcvd-thread.patch hvc-console-is-also-used-by-iseries-so-add-that-to-hvc_driver-help.patch module-return-error-when-mod_sysfs_init-failed.patch git-kvm.patch update-boot-spec-to-207.patch add-weak-for-creating-weak-asm-labels.patch i386-paravirt-boot-sequence.patch make-asm-x86-bootparamh-includable-from-userspace.patch cpu-hotplug-cpu-deliver-cpu_up_canceled-only-to-notify_oked-callbacks-with-cpu_up_prepare.patch linux-kernel-markers.patch linux-kernel-markers-checkpatch-fixes.patch linux-kernel-markers-coding-style-fixes.patch linux-kernel-markers-samples-coding-style-fix.patch mm-clean-up-and-kernelify-shrinker-registration-reiser4.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