diff options
Diffstat (limited to 'include/linux/fs.h')
| -rw-r--r-- | include/linux/fs.h | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/include/linux/fs.h b/include/linux/fs.h index 122b218b66c9..6867512907d6 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1148,7 +1148,6 @@ enum {  struct sb_writers {  	int				frozen;		/* Is sb frozen? */ -	wait_queue_head_t		wait_unfrozen;	/* wait for thaw */  	struct percpu_rw_semaphore	rw_sem[SB_FREEZE_LEVELS];  }; @@ -1794,12 +1793,12 @@ struct file_operations {  	int (*fsync) (struct file *, loff_t, loff_t, int datasync);  	int (*fasync) (int, struct file *, int);  	int (*lock) (struct file *, int, struct file_lock *); -	ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int);  	unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);  	int (*check_flags)(int);  	int (*flock) (struct file *, int, struct file_lock *);  	ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int);  	ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); +	void (*splice_eof)(struct file *file);  	int (*setlease)(struct file *, long, struct file_lock **, void **);  	long (*fallocate)(struct file *file, int mode, loff_t offset,  			  loff_t len); @@ -2784,8 +2783,6 @@ ssize_t copy_splice_read(struct file *in, loff_t *ppos,  			 size_t len, unsigned int flags);  extern ssize_t iter_file_splice_write(struct pipe_inode_info *,  		struct file *, loff_t *, size_t, unsigned int); -extern ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, -		struct file *out, loff_t *, size_t len, unsigned int flags);  extern long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,  		loff_t *opos, size_t len, unsigned int flags); |