The patch titled udf: avoid unnecessary synchronous writes has been added to the -mm tree. Its filename is udf-avoid-unnecessary-synchronous-writes.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: udf: avoid unnecessary synchronous writes From: Mike Galbraith <efault@xxxxxx> Fix udf_clear_inode() to request asynchronous writeout in icache reclaim path. Signed-off-by: Mike Galbraith <efault@xxxxxx> Acked-by: Jan Kara <jack@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/udf/inode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/udf/inode.c~udf-avoid-unnecessary-synchronous-writes fs/udf/inode.c --- a/fs/udf/inode.c~udf-avoid-unnecessary-synchronous-writes +++ a/fs/udf/inode.c @@ -117,7 +117,7 @@ void udf_clear_inode(struct inode *inode udf_discard_prealloc(inode); udf_truncate_tail_extent(inode); unlock_kernel(); - write_inode_now(inode, 1); + write_inode_now(inode, 0); } kfree(UDF_I_DATA(inode)); UDF_I_DATA(inode) = NULL; _ Patches currently in -mm which might be from efault@xxxxxx are git-sched.patch git-x86.patch write_inode_now-avoid-unnecessary-synchronous-write.patch udf-avoid-unnecessary-synchronous-writes.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