The patch titled Fix do_mbind warning with CONFIG_MIGRATION=n has been added to the -mm tree. Its filename is fix-do_mbind-warning-with-config_migration=n.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Fix do_mbind warning with CONFIG_MIGRATION=n From: Keith Owens <kaos@xxxxxxxxxx> With CONFIG_MIGRATION=n mm/mempolicy.c: In function 'do_mbind': mm/mempolicy.c:796: warning: passing argument 2 of 'migrate_pages' from incompatible pointer type Signed-off-by: Keith Owens <kaos@xxxxxxxxxx> Cc: Christoph Lameter <clameter@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- mm/mempolicy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/mempolicy.c~fix-do_mbind-warning-with-config_migration=n mm/mempolicy.c --- a/mm/mempolicy.c~fix-do_mbind-warning-with-config_migration=n +++ a/mm/mempolicy.c @@ -727,7 +727,7 @@ int do_migrate_pages(struct mm_struct *m return -ENOSYS; } -static struct page *new_vma_page(struct page *page, unsigned long private) +static struct page *new_vma_page(struct page *page, unsigned long private, int **x) { return NULL; } _ Patches currently in -mm which might be from kaos@xxxxxxxxxx are fix-do_mbind-warning-with-config_migration=n.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