The patch titled mincore: CONFIG_SWAP=n fix has been added to the -mm tree. Its filename is mincore-config_swap=n-fix.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: mincore: CONFIG_SWAP=n fix From: Nick Piggin <npiggin@xxxxxxx> Fix mincore-anon patch to compile with CONFIG_SWAP=n Signed-off-by: Nick Piggin <npiggin@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/mincore.c | 5 +++++ 1 file changed, 5 insertions(+) diff -puN mm/mincore.c~mincore-config_swap=n-fix mm/mincore.c --- a/mm/mincore.c~mincore-config_swap=n-fix +++ a/mm/mincore.c @@ -116,8 +116,13 @@ static long do_mincore(unsigned long add /* migration entries are always uptodate */ present = 1; } else { +#ifdef CONFIG_SWAP pgoff = entry.val; present = mincore_page(&swapper_space, pgoff); +#else + WARN_ON(1); + present = 1; +#endif } } } _ Patches currently in -mm which might be from npiggin@xxxxxxx are origin.patch mincore-config_swap=n-fix.patch mincore-fill-in-results-properly.patch mincore-vma-crossing-fix.patch git-block.patch mm-remove-gcc-workaround.patch fs-fix-__block_write_full_page-error-case-buffer-submission.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