The patch titled lib/ioremap.c must #include <linux/mm.h> has been removed from the -mm tree. Its filename is generic-ioremap_page_range-implementation-fix.patch This patch was dropped because it was folded into generic-ioremap_page_range-implementation.patch ------------------------------------------------------ Subject: lib/ioremap.c must #include <linux/mm.h> From: Adrian Bunk <bunk@xxxxxxxxx> generic-ioremap_page_range-implementation.patch causes the following compile error with -Werror-implicit-function-declaration on ia64: <-- snip --> CC lib/ioremap.o /home/bunk/linux/kernel-2.6/linux-2.6.18-rc5-mm1/lib/ioremap.c: In function 'ioremap_pte_range': /home/bunk/linux/kernel-2.6/linux-2.6.18-rc5-mm1/lib/ioremap.c:21: error: implicit declaration of function 'pte_alloc_kernel' /home/bunk/linux/kernel-2.6/linux-2.6.18-rc5-mm1/lib/ioremap.c:21: warning: assignment makes pointer from integer without a cast /home/bunk/linux/kernel-2.6/linux-2.6.18-rc5-mm1/lib/ioremap.c: In function 'ioremap_pmd_range': /home/bunk/linux/kernel-2.6/linux-2.6.18-rc5-mm1/lib/ioremap.c:39: error: implicit declaration of function 'pmd_alloc' /home/bunk/linux/kernel-2.6/linux-2.6.18-rc5-mm1/lib/ioremap.c:39: warning: assignment makes pointer from integer without a cast /home/bunk/linux/kernel-2.6/linux-2.6.18-rc5-mm1/lib/ioremap.c: In function 'ioremap_pud_range': /home/bunk/linux/kernel-2.6/linux-2.6.18-rc5-mm1/lib/ioremap.c:57: error: implicit declaration of function 'pud_alloc' /home/bunk/linux/kernel-2.6/linux-2.6.18-rc5-mm1/lib/ioremap.c:57: warning: assignment makes pointer from integer without a cast make[2]: *** [lib/ioremap.o] Error 1 <-- snip --> Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx> Cc: Haavard Skinnemoen <hskinnemoen@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- lib/ioremap.c | 1 + 1 file changed, 1 insertion(+) diff -puN lib/ioremap.c~generic-ioremap_page_range-implementation-fix lib/ioremap.c --- a/lib/ioremap.c~generic-ioremap_page_range-implementation-fix +++ a/lib/ioremap.c @@ -7,6 +7,7 @@ */ #include <linux/io.h> #include <linux/vmalloc.h> +#include <linux/mm.h> #include <asm/cacheflush.h> #include <asm/pgtable.h> _ Patches currently in -mm which might be from bunk@xxxxxxxxx are origin.patch kernel-time-ntpc-possible-cleanups.patch generic-ioremap_page_range-implementation.patch generic-ioremap_page_range-implementation-fix.patch generic-ioremap_page_range-i386-conversion-fix.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