Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 168420
b: refs/heads/master
c: 109f556
h: refs/heads/master
v: v3
  • Loading branch information
Mingming authored and Theodore Ts'o committed Nov 10, 2009
1 parent 3dd3733 commit 4f63436
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fa5d11133b07053270e18fa9c18560e66e79217e
refs/heads/master: 109f55651954def97fa41ee71c464d268c512ab0
1 change: 1 addition & 0 deletions trunk/fs/ext4/extents.c
Original file line number Diff line number Diff line change
Expand Up @@ -3519,6 +3519,7 @@ long ext4_fallocate(struct inode *inode, int mode, loff_t offset, loff_t len)
*
* This function is called from the direct IO end io call back
* function, to convert the fallocated extents after IO is completed.
* Returns 0 on success.
*/
int ext4_convert_unwritten_extents(struct inode *inode, loff_t offset,
loff_t len)
Expand Down
10 changes: 7 additions & 3 deletions trunk/fs/ext4/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -3772,13 +3772,17 @@ static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
if (ret != -EIOCBQUEUED && ret <= 0 && iocb->private) {
ext4_free_io_end(iocb->private);
iocb->private = NULL;
} else if (ret > 0)
} else if (ret > 0) {
int err;
/*
* for non AIO case, since the IO is already
* completed, we could do the convertion right here
*/
ret = ext4_convert_unwritten_extents(inode,
offset, ret);
err = ext4_convert_unwritten_extents(inode,
offset, ret);
if (err < 0)
ret = err;
}
return ret;
}

Expand Down

0 comments on commit 4f63436

Please sign in to comment.