| Submitter | Christoph Hellwig |
|---|---|
| Date | June 20, 2011, 8:15 p.m. |
| Message ID | <20110620202031.775407797@bombadil.infradead.org> |
| Download | mbox | patch |
| Permalink | /patch/101192/ |
| State | Superseded |
| Headers | show |
Comments
Patch
Index: linux-2.6/fs/btrfs/inode.c =================================================================== --- linux-2.6.orig/fs/btrfs/inode.c 2011-06-11 12:58:46.615017504 +0200 +++ linux-2.6/fs/btrfs/inode.c 2011-06-11 12:59:23.218348984 +0200 @@ -3550,6 +3550,8 @@ static int btrfs_setsize(struct inode *i loff_t oldsize = i_size_read(inode); int ret; + inode_dio_wait(inode); + if (newsize == oldsize) return 0;
Wait for all direct I/O requests to finish before performing a truncate. Signed-off-by: Christoph Hellwig <hch@lst.de> -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html