The patch titled fix build error caused by !NUMA migration has been removed from the -mm tree. Its filename was mm-make-config_migration-available-w-o-config_numa-fix.patch This patch was dropped because it was folded into mm-make-config_migration-available-w-o-config_numa.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: fix build error caused by !NUMA migration Patch title: mm-make-config_migration-available-w-o-config_numa-fix.patch Against: mmotm Jul 14 Applies after: mm-make-config_migration-available-w-o-config_numa.patch "Make CONFIG_MIGRATION available w/o CONFIG_NUMA" patch add pagemap.h inclusion. Unfortunately, mempolicy.h is userland exported header, but pagemap.h isn't. then it cause build error on IA64 && CONFIG_DISCONTIGMEM environment. CHECK include/linux (342 files) linux-2.6.26-rc9-mmotm-0714/usr/include/linux/mempolicy.h:5: included file 'linux/pagemap.h' is not exported make[3]: *** [linux-2.6.26-rc9-mmotm-0714/usr/include/linux/.check] Error 1 Signed-off-by: KOSAKI Motorhiro <kosaki.motohiro@xxxxxxxxxxxxxx> Cc: Christoph Lameter <cl@xxxxxxxxxxxxxxxxxxxx> Cc: Gerald Schaefer <gerald.schaefer@xxxxxxxxxx> Cc: Martin Schwidefsky <schwidefsky@xxxxxxxxxx> Cc: Heiko Carstens <heiko.carstens@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/mempolicy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/mempolicy.h~mm-make-config_migration-available-w-o-config_numa-fix include/linux/mempolicy.h --- a/include/linux/mempolicy.h~mm-make-config_migration-available-w-o-config_numa-fix +++ a/include/linux/mempolicy.h @@ -2,7 +2,6 @@ #define _LINUX_MEMPOLICY_H 1 #include <linux/errno.h> -#include <linux/pagemap.h> /* * NUMA memory policies for Linux. @@ -60,6 +59,7 @@ enum { #include <linux/rbtree.h> #include <linux/spinlock.h> #include <linux/nodemask.h> +#include <linux/pagemap.h> struct mm_struct; _ Patches currently in -mm which might be from kosaki.motohiro@xxxxxxxxxxxxxx are page-allocator-inlnie-some-__alloc_pages-wrappers.patch mm-hugetlbc-fix-duplicate-variable.patch page-flags-record-page-flag-overlays-explicitly.patch slub-record-page-flag-overlays-explicitly.patch slob-record-page-flag-overlays-explicitly.patch mm-create-sys-kernel-mm.patch mm-make-config_migration-available-w-o-config_numa.patch mm-make-config_migration-available-w-o-config_numa-fix.patch mm-fix-ever-decreasing-swap-priority.patch pm-schedule-sysrq-poweroff-on-boot-cpu-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