The patch titled mincore: CONFIG_SWAP=n fix has been removed from the -mm tree. Its filename was mincore-config_swap=n-fix.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 git-block.patch fs-fix-__block_write_full_page-error-case-buffer-submission.patch fs-fix-libfs-data-leak.patch fs-fix-nobh-data-leak.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