The patch titled add WEAK() for creating weak asm labels has been removed from the -mm tree. Its filename was add-weak-for-creating-weak-asm-labels.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 git-kvm.patch 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