The patch titled Subject: include/linux/dax.h: dax_iomap_fault() returns vm_fault_t has been added to the -mm tree. Its filename is include-dax-new-return-type-vm_fault_t.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/include-dax-new-return-type-vm_fault_t.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/include-dax-new-return-type-vm_fault_t.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: include/linux/dax.h: dax_iomap_fault() returns vm_fault_t 1c8f422059ae ("mm: change return type to vm_fault_t") missed a conversion. It's not a big problem at present because mainline is still using typedef int vm_fault_t; Fixes: 1c8f422059ae ("mm: change return type to vm_fault_t") Link: http://lkml.kernel.org/r/20180620172046.GA27894@jordon-HP-15-Notebook-PC Signed-off-by: Souptick Joarder <jrdr.linux@xxxxxxxxx> Reviewed-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Cc: Matthew Wilcox <willy@xxxxxxxxxxxxx> Cc: Dan Williams <dan.j.williams@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/dax.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/dax.h~include-dax-new-return-type-vm_fault_t include/linux/dax.h --- a/include/linux/dax.h~include-dax-new-return-type-vm_fault_t +++ a/include/linux/dax.h @@ -135,7 +135,7 @@ void dax_flush(struct dax_device *dax_de ssize_t dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter, const struct iomap_ops *ops); -int dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size, +vm_fault_t dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size, pfn_t *pfnp, int *errp, const struct iomap_ops *ops); vm_fault_t dax_finish_sync_fault(struct vm_fault *vmf, enum page_entry_size pe_size, pfn_t pfn); _ Patches currently in -mm which might be from jrdr.linux@xxxxxxxxx are include-dax-new-return-type-vm_fault_t.patch mm-convert-return-type-of-handle_mm_fault-caller-to-vm_fault_t.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