The patch titled Subject: fs/proc/vmcore.c: Convert to use vmf_error() has been added to the -mm tree. Its filename is fs-proc-vmcorec-convert-to-use-vmf_error.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/fs-proc-vmcorec-convert-to-use-vmf_error.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/fs-proc-vmcorec-convert-to-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: fs/proc/vmcore.c: Convert to use vmf_error() This code can be replaced with vmf_error() inline function. Link: http://lkml.kernel.org/r/20180918145945.GA11392@jordon-HP-15-Notebook-PC Signed-off-by: Souptick Joarder <jrdr.linux@xxxxxxxxx> Cc: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/vmcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/fs/proc/vmcore.c~fs-proc-vmcorec-convert-to-use-vmf_error +++ a/fs/proc/vmcore.c @@ -401,7 +401,7 @@ static vm_fault_t mmap_vmcore_fault(stru if (rc < 0) { unlock_page(page); put_page(page); - return (rc == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS; + return vmf_error(rc); } SetPageUptodate(page); } _ 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 fs-proc-vmcorec-convert-to-use-vmf_error.patch