The patch titled Subject: mm/filemap.c: use vmf_error() has been added to the -mm tree. Its filename is mm-filemapc-use-vmf_error.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-filemapc-use-vmf_error.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-filemapc-use-vmf_error.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Souptick Joarder <jrdr.linux@xxxxxxxxx> Subject: mm/filemap.c: use vmf_error() These codes can be replaced with new inline vmf_error(). Link: http://lkml.kernel.org/r/20180927171411.GA23331@jordon-HP-15-Notebook-PC Signed-off-by: Souptick Joarder <jrdr.linux@xxxxxxxxx> Reviewed-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/filemap.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) --- a/mm/filemap.c~mm-filemapc-use-vmf_error +++ a/mm/filemap.c @@ -2596,9 +2596,7 @@ no_cached_page: * system is low on memory, or a problem occurs while trying * to schedule I/O. */ - if (error == -ENOMEM) - return VM_FAULT_OOM; - return VM_FAULT_SIGBUS; + return vmf_error(error); page_not_uptodate: /* _ Patches currently in -mm which might be from jrdr.linux@xxxxxxxxx are fs-iomap-change-return-type-to-vm_fault_t.patch mm-conveted-to-use-vm_fault_t.patch mm-filemapc-use-vmf_error.patch fs-proc-vmcorec-convert-to-use-vmf_error.patch android-binder-replace-vm_insert_page-with-vmf_insert_page.patch