The patch titled net/atm compile error on ARM has been removed from the -mm tree. Its filename is net-atm-compile-error-on-arm.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: net/atm compile error on ARM From: Kevin Hilman <kevin@xxxxxxxxxx> atm_proc_exit() is declared as __exit, and thus in .exit.text. On some architectures (ARM) .exit.text is discarded at compile time, and since atm_proc_exit() is called by some other __init functions, it results in a link error. Signed-off-by: Kevin Hilman <khilman@xxxxxxxxxx> Cc: "David S. Miller" <davem@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- net/atm/proc.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN net/atm/proc.c~net-atm-compile-error-on-arm net/atm/proc.c --- a/net/atm/proc.c~net-atm-compile-error-on-arm +++ a/net/atm/proc.c @@ -507,7 +507,7 @@ err_out: goto out; } -void __exit atm_proc_exit(void) +void atm_proc_exit(void) { atm_proc_dirs_remove(); } _ Patches currently in -mm which might be from kevin@xxxxxxxxxx are - 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