From: Keith Owens Date: Wed, 11 Oct 2006 08:21:28 +0000 (-0700) Subject: [PATCH] Fix do_mbind warning with CONFIG_MIGRATION=n X-Git-Tag: v2.6.19-rc2~100 X-Git-Url: https://git.kernelconcepts.de/?a=commitdiff_plain;h=699397499742d1245ea5d677a08fa265df666d2d;p=karo-tx-linux.git [PATCH] Fix do_mbind warning with CONFIG_MIGRATION=n 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 Cc: Christoph Lameter Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/mempolicy.c b/mm/mempolicy.c index 25788b1b7fcf..617fb31086ee 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c @@ -727,7 +727,7 @@ int do_migrate_pages(struct mm_struct *mm, 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; }