The patch titled Subject: dax: fix regression in dax_writeback_mapping_range() has been removed from the -mm tree. Its filename was dax-add-tracepoints-to-dax_writeback_mapping_range-fix.patch This patch was dropped because it was folded into dax-add-tracepoints-to-dax_writeback_mapping_range.patch ------------------------------------------------------ From: Ross Zwisler <ross.zwisler@xxxxxxxxxxxxxxx> Subject: dax: fix regression in dax_writeback_mapping_range() commit 354ae7432ee8 ("dax: add tracepoints to dax_writeback_mapping_range()") in the -next tree, which appears in next-20170310, inadvertently changed dax_writeback_mapping_range() so that it could end up returning a positive value: the number of bytes flushed, as returned by dax_writeback_one(). This was incorrect. This function either needs to return a negative error value, or zero on success. This change was causing xfstest failures, as reported by Xiong: https://lkml.org/lkml/2017/3/13/1220 With this fix applied to next-20170310, all the test failures reported by Xiong (generic/075 generic/112 generic/127 generic/231 generic/263) are resolved. Link: http://lkml.kernel.org/r/20170314215358.31451-1-ross.zwisler@xxxxxxxxxxxxxxx Signed-off-by: Ross Zwisler <ross.zwisler@xxxxxxxxxxxxxxx> Reported-by: Xiong Zhou <xzhou@xxxxxxxxxx> Cc: Alexander Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Dan Williams <dan.j.williams@xxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxxxxx> Cc: Matthew Wilcox <mawilcox@xxxxxxxxxxxxx> Cc: Steven Rostedt <rostedt@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/dax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/dax.c~dax-add-tracepoints-to-dax_writeback_mapping_range-fix fs/dax.c --- a/fs/dax.c~dax-add-tracepoints-to-dax_writeback_mapping_range-fix +++ a/fs/dax.c @@ -891,7 +891,7 @@ int dax_writeback_mapping_range(struct a out: put_dax(dax_dev); trace_dax_writeback_range_done(inode, start_index, end_index); - return ret; + return (ret < 0 ? ret : 0); } EXPORT_SYMBOL_GPL(dax_writeback_mapping_range); _ Patches currently in -mm which might be from ross.zwisler@xxxxxxxxxxxxxxx are dax-add-tracepoints-to-dax_iomap_pte_fault.patch dax-add-tracepoints-to-dax_pfn_mkwrite.patch dax-add-tracepoints-to-dax_load_hole.patch dax-add-tracepoints-to-dax_writeback_mapping_range.patch dax-add-tracepoint-to-dax_writeback_one.patch dax-add-tracepoint-to-dax_insert_mapping.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