aboutsummaryrefslogtreecommitdiffstats
path: root/fs/reiserfs
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2010-06-04 05:29:53 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2010-08-09 16:47:29 -0400
commiteafdc7d190a944c755a9fe68573c193e6e0217e7 (patch)
tree915c3cc8004706fabf88eae1ab123a3fa0147516 /fs/reiserfs
parent256249584bda1a9357e2d29987a37f5b2df035f6 (diff)
sort out blockdev_direct_IO variants
Move the call to vmtruncate to get rid of accessive blocks to the callers in prepearation of the new truncate calling sequence. This was only done for DIO_LOCKING filesystems, so the __blockdev_direct_IO_newtrunc variant was not needed anyway. Get rid of blockdev_direct_IO_no_locking and its _newtrunc variant while at it as just opencoding the two additional paramters is shorted than the name suffix. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/reiserfs')
-rw-r--r--fs/reiserfs/inode.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/fs/reiserfs/inode.c b/fs/reiserfs/inode.c
index 6edac85c2b93..4c1fb548ab64 100644
--- a/fs/reiserfs/inode.c
+++ b/fs/reiserfs/inode.c
@@ -3057,10 +3057,25 @@ static ssize_t reiserfs_direct_IO(int rw, struct kiocb *iocb,
3057{ 3057{
3058 struct file *file = iocb->ki_filp; 3058 struct file *file = iocb->ki_filp;
3059 struct inode *inode = file->f_mapping->host; 3059 struct inode *inode = file->f_mapping->host;
3060 ssize_t ret;
3060 3061
3061 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov, 3062 ret = blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
3062 offset, nr_segs, 3063 offset, nr_segs,
3063 reiserfs_get_blocks_direct_io, NULL); 3064 reiserfs_get_blocks_direct_io, NULL);
3065
3066 /*
3067 * In case of error extending write may have instantiated a few
3068 * blocks outside i_size. Trim these off again.
3069 */
3070 if (unlikely((rw & WRITE) && ret < 0)) {
3071 loff_t isize = i_size_read(inode);
3072 loff_t end = offset + iov_length(iov, nr_segs);
3073
3074 if (end > isize)
3075 vmtruncate(inode, isize);
3076 }
3077
3078 return ret;
3064} 3079}
3065 3080
3066int reiserfs_setattr(struct dentry *dentry, struct iattr *attr) 3081int reiserfs_setattr(struct dentry *dentry, struct iattr *attr)