diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2014-02-09 12:58:52 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-04-01 23:19:34 -0400 |
commit | 41fc56d573c35a212688b12b48af8c303f9bb6d2 (patch) | |
tree | 049c1a885b2a67156b94ac9a7da848922966280a /include/linux | |
parent | b2f42cfeeb0452ca3e004c3014cda99b53554d47 (diff) |
kill the 4th argument of __generic_file_aio_write()
It's always equal to &iocb->ki_pos, where iocb is the value of the 1st
argument.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/fs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 2a5b1744f80a..e677d1e1189f 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -2392,8 +2392,7 @@ extern int generic_file_remap_pages(struct vm_area_struct *, unsigned long addr, | |||
2392 | unsigned long size, pgoff_t pgoff); | 2392 | unsigned long size, pgoff_t pgoff); |
2393 | int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk); | 2393 | int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk); |
2394 | extern ssize_t generic_file_aio_read(struct kiocb *, const struct iovec *, unsigned long, loff_t); | 2394 | extern ssize_t generic_file_aio_read(struct kiocb *, const struct iovec *, unsigned long, loff_t); |
2395 | extern ssize_t __generic_file_aio_write(struct kiocb *, const struct iovec *, unsigned long, | 2395 | extern ssize_t __generic_file_aio_write(struct kiocb *, const struct iovec *, unsigned long); |
2396 | loff_t *); | ||
2397 | extern ssize_t generic_file_aio_write(struct kiocb *, const struct iovec *, unsigned long, loff_t); | 2396 | extern ssize_t generic_file_aio_write(struct kiocb *, const struct iovec *, unsigned long, loff_t); |
2398 | extern ssize_t generic_file_direct_write(struct kiocb *, const struct iovec *, | 2397 | extern ssize_t generic_file_direct_write(struct kiocb *, const struct iovec *, |
2399 | unsigned long *, loff_t, loff_t *, size_t, size_t); | 2398 | unsigned long *, loff_t, loff_t *, size_t, size_t); |