diff options
Diffstat (limited to 'Documentation/filesystems')
-rw-r--r-- | Documentation/filesystems/Locking | 2 | ||||
-rw-r--r-- | Documentation/filesystems/vfs.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking index f1997e9da61f..3d92049ae71d 100644 --- a/Documentation/filesystems/Locking +++ b/Documentation/filesystems/Locking | |||
@@ -464,7 +464,7 @@ prototypes: | |||
464 | size_t, unsigned int); | 464 | size_t, unsigned int); |
465 | ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, | 465 | ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, |
466 | size_t, unsigned int); | 466 | size_t, unsigned int); |
467 | int (*setlease)(struct file *, long, struct file_lock **); | 467 | int (*setlease)(struct file *, long, struct file_lock **, void **); |
468 | long (*fallocate)(struct file *, int, loff_t, loff_t); | 468 | long (*fallocate)(struct file *, int, loff_t, loff_t); |
469 | }; | 469 | }; |
470 | 470 | ||
diff --git a/Documentation/filesystems/vfs.txt b/Documentation/filesystems/vfs.txt index 61d65cc65c54..28ebd49f169f 100644 --- a/Documentation/filesystems/vfs.txt +++ b/Documentation/filesystems/vfs.txt | |||
@@ -826,7 +826,7 @@ struct file_operations { | |||
826 | int (*flock) (struct file *, int, struct file_lock *); | 826 | int (*flock) (struct file *, int, struct file_lock *); |
827 | ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, size_t, unsigned int); | 827 | ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, size_t, unsigned int); |
828 | ssize_t (*splice_read)(struct file *, struct pipe_inode_info *, size_t, unsigned int); | 828 | ssize_t (*splice_read)(struct file *, struct pipe_inode_info *, size_t, unsigned int); |
829 | int (*setlease)(struct file *, long arg, struct file_lock **); | 829 | int (*setlease)(struct file *, long arg, struct file_lock **, void **); |
830 | long (*fallocate)(struct file *, int mode, loff_t offset, loff_t len); | 830 | long (*fallocate)(struct file *, int mode, loff_t offset, loff_t len); |
831 | int (*show_fdinfo)(struct seq_file *m, struct file *f); | 831 | int (*show_fdinfo)(struct seq_file *m, struct file *f); |
832 | }; | 832 | }; |