diff options
Diffstat (limited to 'include/linux/file.h')
| -rw-r--r-- | include/linux/file.h | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/include/linux/file.h b/include/linux/file.h index 279720db984a..6b2fb032416c 100644 --- a/include/linux/file.h +++ b/include/linux/file.h @@ -17,9 +17,12 @@ extern void fput(struct file *);  struct file_operations;  struct vfsmount;  struct dentry; +struct inode;  struct path; -extern struct file *alloc_file(const struct path *, fmode_t mode, -	const struct file_operations *fop); +extern struct file *alloc_file_pseudo(struct inode *, struct vfsmount *, +	const char *, int flags, const struct file_operations *); +extern struct file *alloc_file_clone(struct file *, int flags, +	const struct file_operations *);  static inline void fput_light(struct file *file, int fput_needed)  { @@ -78,7 +81,6 @@ extern int f_dupfd(unsigned int from, struct file *file, unsigned flags);  extern int replace_fd(unsigned fd, struct file *file, unsigned flags);  extern void set_close_on_exec(unsigned int fd, int flag);  extern bool get_close_on_exec(unsigned int fd); -extern void put_filp(struct file *);  extern int get_unused_fd_flags(unsigned flags);  extern void put_unused_fd(unsigned int fd);  | 
