Hi Andrew, Today's linux-next merge of the akpm-current tree got a conflict in: fs/iomap.c between commit: 8ff6daa17b6a ("iomap: constify struct iomap_ops") from the xfs tree and commit: d6fb008f420c ("mm, fs: reduce fault, page_mkwrite, and pfn_mkwrite to take only vmf") from the akpm-current tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc fs/iomap.c index d89f70bbb952,ccba165bed49..000000000000 --- a/fs/iomap.c +++ b/fs/iomap.c @@@ -445,11 -445,10 +445,10 @@@ iomap_page_mkwrite_actor(struct inode * return length; } - int iomap_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf, - const struct iomap_ops *ops) -int iomap_page_mkwrite(struct vm_fault *vmf, struct iomap_ops *ops) ++int iomap_page_mkwrite(struct vm_fault *vmf, const struct iomap_ops *ops) { struct page *page = vmf->page; - struct inode *inode = file_inode(vma->vm_file); + struct inode *inode = file_inode(vmf->vma->vm_file); unsigned long length; loff_t offset, size; ssize_t ret; -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html