Skip to content

Commit

Permalink
ext4: inline generic_file_aio_write() into ext4_file_write()
Browse files Browse the repository at this point in the history
Copy generic_file_aio_write() into ext4_file_write().  This is part of
a patch series which allows us to simplify ext4_file_write() and
ext4_file_dio_write(), by calling __generic_file_aio_write() directly.

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Reviewed-by: Jan Kara <jack@suse.cz>
  • Loading branch information
Theodore Ts'o committed Apr 21, 2014
1 parent 556615d commit 7608e61
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions fs/ext4/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,6 @@ ext4_file_dio_write(struct kiocb *iocb, const struct iovec *iov,
ext4_unwritten_wait(inode);
}

BUG_ON(iocb->ki_pos != pos);

mutex_lock(&inode->i_mutex);
blk_start_plug(&plug);

Expand Down Expand Up @@ -168,9 +166,12 @@ static ssize_t
ext4_file_write(struct kiocb *iocb, const struct iovec *iov,
unsigned long nr_segs, loff_t pos)
{
struct file *file = iocb->ki_filp;
struct inode *inode = file_inode(iocb->ki_filp);
ssize_t ret;

BUG_ON(iocb->ki_pos != pos);

/*
* If we have encountered a bitmap-format file, the size limit
* is smaller than s_maxbytes, which is for extent-mapped files.
Expand All @@ -192,8 +193,19 @@ ext4_file_write(struct kiocb *iocb, const struct iovec *iov,

if (unlikely(iocb->ki_filp->f_flags & O_DIRECT))
ret = ext4_file_dio_write(iocb, iov, nr_segs, pos);
else
ret = generic_file_aio_write(iocb, iov, nr_segs, pos);
else {
mutex_lock(&inode->i_mutex);
ret = __generic_file_aio_write(iocb, iov, nr_segs);
mutex_unlock(&inode->i_mutex);

if (ret > 0) {
ssize_t err;

err = generic_write_sync(file, iocb->ki_pos - ret, ret);
if (err < 0)
ret = err;
}
}

return ret;
}
Expand Down

0 comments on commit 7608e61

Please sign in to comment.