The patch titled mm: make filemap_nopage use NOPAGE_SIGBUS has been removed from the -mm tree. Its filename is mm-make-filemap_nopage-use-nopage_sigbus.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: mm: make filemap_nopage use NOPAGE_SIGBUS From: Adam Litke <agl@xxxxxxxxxx> Don't open-code NOPAGE_SIGBUS. Signed-off-by: Adam Litke <agl@xxxxxxxxxx> Acked-by: Hugh Dickins <hugh@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- mm/filemap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN mm/filemap.c~mm-make-filemap_nopage-use-nopage_sigbus mm/filemap.c --- a/mm/filemap.c~mm-make-filemap_nopage-use-nopage_sigbus +++ a/mm/filemap.c @@ -1471,7 +1471,7 @@ outside_data_content: * accessible.. */ if (area->vm_mm == current->mm) - return NULL; + return NOPAGE_SIGBUS; /* Fall through to the non-read-ahead case */ no_cached_page: /* @@ -1496,7 +1496,7 @@ no_cached_page: */ if (error == -ENOMEM) return NOPAGE_OOM; - return NULL; + return NOPAGE_SIGBUS; page_not_uptodate: if (!did_readaround) { @@ -1565,7 +1565,7 @@ page_not_uptodate: */ shrink_readahead_size_eio(file, ra); page_cache_release(page); - return NULL; + return NOPAGE_SIGBUS; } EXPORT_SYMBOL(filemap_nopage); _ Patches currently in -mm which might be from agl@xxxxxxxxxx are origin.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