diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-11-11 12:19:01 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-11-11 12:19:01 -0500 |
| commit | c5e4ca6da93f69939542385ca23d7ccebddc3f7d (patch) | |
| tree | da01507b6d050f5ac9face51a7be904ed5cc18dd /Documentation | |
| parent | ef091b3cef2d699568b51559ae8340b996f43230 (diff) | |
| parent | e519e7774784f3fa7728657d780863805ed1c983 (diff) | |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull VFS fixes from Al Viro:
"Christoph's and Jan's aio fixes, fixup for generic_file_splice_read
(removal of pointless detritus that actually breaks it when used for
gfs2 ->splice_read()) and fixup for generic_file_read_iter()
interaction with ITER_PIPE destinations."
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
splice: remove detritus from generic_file_splice_read()
mm/filemap: don't allow partially uptodate page for pipes
aio: fix freeze protection of aio writes
fs: remove aio_run_iocb
fs: remove the never implemented aio_fsync file operation
aio: hold an extra file reference over AIO read/write operations
Diffstat (limited to 'Documentation')
| -rw-r--r-- | Documentation/filesystems/Locking | 1 | ||||
| -rw-r--r-- | Documentation/filesystems/vfs.txt | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking index 14cdc101d165..1b5f15653b1b 100644 --- a/Documentation/filesystems/Locking +++ b/Documentation/filesystems/Locking | |||
| @@ -447,7 +447,6 @@ prototypes: | |||
| 447 | int (*flush) (struct file *); | 447 | int (*flush) (struct file *); |
| 448 | int (*release) (struct inode *, struct file *); | 448 | int (*release) (struct inode *, struct file *); |
| 449 | int (*fsync) (struct file *, loff_t start, loff_t end, int datasync); | 449 | int (*fsync) (struct file *, loff_t start, loff_t end, int datasync); |
| 450 | int (*aio_fsync) (struct kiocb *, int datasync); | ||
| 451 | int (*fasync) (int, struct file *, int); | 450 | int (*fasync) (int, struct file *, int); |
| 452 | int (*lock) (struct file *, int, struct file_lock *); | 451 | int (*lock) (struct file *, int, struct file_lock *); |
| 453 | ssize_t (*readv) (struct file *, const struct iovec *, unsigned long, | 452 | ssize_t (*readv) (struct file *, const struct iovec *, unsigned long, |
diff --git a/Documentation/filesystems/vfs.txt b/Documentation/filesystems/vfs.txt index d619c8d71966..b5039a00caaf 100644 --- a/Documentation/filesystems/vfs.txt +++ b/Documentation/filesystems/vfs.txt | |||
| @@ -828,7 +828,6 @@ struct file_operations { | |||
| 828 | int (*flush) (struct file *, fl_owner_t id); | 828 | int (*flush) (struct file *, fl_owner_t id); |
| 829 | int (*release) (struct inode *, struct file *); | 829 | int (*release) (struct inode *, struct file *); |
| 830 | int (*fsync) (struct file *, loff_t, loff_t, int datasync); | 830 | int (*fsync) (struct file *, loff_t, loff_t, int datasync); |
| 831 | int (*aio_fsync) (struct kiocb *, int datasync); | ||
| 832 | int (*fasync) (int, struct file *, int); | 831 | int (*fasync) (int, struct file *, int); |
| 833 | int (*lock) (struct file *, int, struct file_lock *); | 832 | int (*lock) (struct file *, int, struct file_lock *); |
| 834 | ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int); | 833 | ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int); |
