The patch titled Subject: daxext2-replace-the-xip-page-fault-handler-with-the-dax-page-fault-handler-fix has been removed from the -mm tree. Its filename was daxext2-replace-the-xip-page-fault-handler-with-the-dax-page-fault-handler-fix.patch This patch was dropped because it was folded into daxext2-replace-the-xip-page-fault-handler-with-the-dax-page-fault-handler.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: daxext2-replace-the-xip-page-fault-handler-with-the-dax-page-fault-handler-fix Cc: Jan Kara <jack@xxxxxxx> Cc: Matthew Wilcox <matthew.r.wilcox@xxxxxxxxx> Cc: Andreas Dilger <andreas.dilger@xxxxxxxxx> Cc: Boaz Harrosh <boaz@xxxxxxxxxxxxx> Cc: Christoph Hellwig <hch@xxxxxx> Cc: Dave Chinner <david@xxxxxxxxxxxxx> Cc: Jens Axboe <axboe@xxxxxxxxx> Cc: Kirill A. Shutemov <kirill.shutemov@xxxxxxxxxxxxxxx> Cc: Mathieu Desnoyers <mathieu.desnoyers@xxxxxxxxxxxx> Cc: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Cc: Ross Zwisler <ross.zwisler@xxxxxxxxxxxxxxx> Cc: Theodore Ts'o <tytso@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/dax.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff -puN fs/dax.c~daxext2-replace-the-xip-page-fault-handler-with-the-dax-page-fault-handler-fix fs/dax.c --- a/fs/dax.c~daxext2-replace-the-xip-page-fault-handler-with-the-dax-page-fault-handler-fix +++ a/fs/dax.c @@ -279,7 +279,7 @@ static int dax_insert_mapping(struct ino pgoff_t size; int error; - mutex_lock(&mapping->i_mmap_mutex); + i_mmap_lock_read(mapping); /* * Check truncate didn't happen while we were allocating a block. @@ -308,7 +308,7 @@ static int dax_insert_mapping(struct ino error = vm_insert_mixed(vma, vaddr, pfn); out: - mutex_unlock(&mapping->i_mmap_mutex); + i_mmap_unlock_read(mapping); if (bh->b_end_io) bh->b_end_io(bh, 1); @@ -389,12 +389,12 @@ static int do_dax_fault(struct vm_area_s goto unlock_page; vmf->page = page; if (!page) { - mutex_lock(&mapping->i_mmap_mutex); + i_mmap_lock_read(mapping); /* Check we didn't race with truncate */ size = (i_size_read(inode) + PAGE_SIZE - 1) >> PAGE_SHIFT; if (vmf->pgoff >= size) { - mutex_unlock(&mapping->i_mmap_mutex); + i_mmap_unlock_read(mapping); error = -EIO; goto out; } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch mm-fix-xip-fault-vs-truncate-race.patch daxext2-replace-the-xip-page-fault-handler-with-the-dax-page-fault-handler.patch daxext2-replace-the-xip-page-fault-handler-with-the-dax-page-fault-handler-fix-2.patch daxext2-replace-the-xip-page-fault-handler-with-the-dax-page-fault-handler-fix-3.patch dax-add-dax_zero_page_range-fix.patch ext4-add-dax-functionality-fix.patch ocfs2-add-functions-to-add-and-remove-inode-in-orphan-dir-fix.patch ocfs2-implement-ocfs2_direct_io_write-fix.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