file.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Wrapper functions for accessing the file_struct fd array.
  3. */
  4. #ifndef __LINUX_FILE_H
  5. #define __LINUX_FILE_H
  6. #include <linux/compiler.h>
  7. #include <linux/types.h>
  8. #include <linux/posix_types.h>
  9. struct file;
  10. extern void __fput(struct file *);
  11. extern void fput(struct file *);
  12. extern void drop_file_write_access(struct file *file);
  13. struct file_operations;
  14. struct vfsmount;
  15. struct dentry;
  16. extern int init_file(struct file *, struct vfsmount *mnt,
  17. struct dentry *dentry, mode_t mode,
  18. const struct file_operations *fop);
  19. extern struct file *alloc_file(struct vfsmount *, struct dentry *dentry,
  20. mode_t mode, const struct file_operations *fop);
  21. static inline void fput_light(struct file *file, int fput_needed)
  22. {
  23. if (unlikely(fput_needed))
  24. fput(file);
  25. }
  26. extern struct file *fget(unsigned int fd);
  27. extern struct file *fget_light(unsigned int fd, int *fput_needed);
  28. extern void set_close_on_exec(unsigned int fd, int flag);
  29. extern void put_filp(struct file *);
  30. extern int alloc_fd(unsigned start, unsigned flags);
  31. extern int get_unused_fd(void);
  32. #define get_unused_fd_flags(flags) alloc_fd(0, (flags))
  33. extern void put_unused_fd(unsigned int fd);
  34. extern void fd_install(unsigned int fd, struct file *file);
  35. #endif /* __LINUX_FILE_H */