The patch titled vectorize-aio_read-aio_write-fileop-methods xfs fix has been added to the -mm tree. Its filename is vectorize-aio_read-aio_write-fileop-methods-xfs-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: vectorize-aio_read-aio_write-fileop-methods xfs fix From: Badari Pulavarty <pbadari@xxxxxxxxxx> Fix a bug in __xfs_file_write() which is causing writes to fail with -EINVAL. Signed-off-by: Badari Pulavarty <pbadari@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/xfs/linux-2.6/xfs_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/xfs/linux-2.6/xfs_file.c~vectorize-aio_read-aio_write-fileop-methods-xfs-fix fs/xfs/linux-2.6/xfs_file.c --- a/fs/xfs/linux-2.6/xfs_file.c~vectorize-aio_read-aio_write-fileop-methods-xfs-fix +++ a/fs/xfs/linux-2.6/xfs_file.c @@ -99,7 +99,7 @@ __xfs_file_write( BUG_ON(iocb->ki_pos != pos); if (unlikely(file->f_flags & O_DIRECT)) ioflags |= IO_ISDIRECT; - return bhv_vop_write(vp, iocb, &iov, nr_segs, &iocb->ki_pos, + return bhv_vop_write(vp, iocb, iov, nr_segs, &iocb->ki_pos, ioflags, NULL); } _ Patches currently in -mm which might be from pbadari@xxxxxxxxxx are vectorize-aio_read-aio_write-fileop-methods.patch vectorize-aio_read-aio_write-fileop-methods-xfs-fix.patch remove-readv-writev-methods-and-use-aio_read-aio_write.patch streamline-generic_file_-interfaces-and-filemap.patch streamline-generic_file_-interfaces-and-filemap-ecryptfs.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