diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2014-02-09 13:37:49 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-04-01 23:19:34 -0400 |
commit | fcacafd269adc88f41b68cb77a3f957a66563428 (patch) | |
tree | 5c2796dae6d890aad1ab1b4dc90f46ef53954a3a /fs/ceph | |
parent | 41fc56d573c35a212688b12b48af8c303f9bb6d2 (diff) | |
download | op-kernel-dev-fcacafd269adc88f41b68cb77a3f957a66563428.zip op-kernel-dev-fcacafd269adc88f41b68cb77a3f957a66563428.tar.gz |
kill the 5th argument of generic_file_buffered_write()
same story - it's &iocb->ki_pos in all cases
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/file.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ceph/file.c b/fs/ceph/file.c index 09c7afe..a798db5 100644 --- a/fs/ceph/file.c +++ b/fs/ceph/file.c @@ -978,8 +978,7 @@ retry_snap: * can not run at the same time */ written = generic_file_buffered_write(iocb, iov, nr_segs, - pos, &iocb->ki_pos, - count, 0); + pos, count, 0); mutex_unlock(&inode->i_mutex); } |