file.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. struct file_operations;
  12. struct vfsmount;
  13. struct dentry;
  14. struct path;
  15. extern struct file *alloc_file(struct path *, fmode_t mode,
  16. const struct file_operations *fop);
  17. static inline void fput_light(struct file *file, int fput_needed)
  18. {
  19. if (fput_needed)
  20. fput(file);
  21. }
  22. extern struct file *fget(unsigned int fd);
  23. extern struct file *fget_light(unsigned int fd, int *fput_needed);
  24. extern struct file *fget_raw(unsigned int fd);
  25. extern struct file *fget_raw_light(unsigned int fd, int *fput_needed);
  26. extern int f_dupfd(unsigned int from, struct file *file, unsigned flags);
  27. extern int replace_fd(unsigned fd, struct file *file, unsigned flags);
  28. extern void set_close_on_exec(unsigned int fd, int flag);
  29. extern bool get_close_on_exec(unsigned int fd);
  30. extern void put_filp(struct file *);
  31. extern int get_unused_fd_flags(unsigned flags);
  32. #define get_unused_fd() get_unused_fd_flags(0)
  33. extern void put_unused_fd(unsigned int fd);
  34. extern void fd_install(unsigned int fd, struct file *file);
  35. extern void flush_delayed_fput(void);
  36. extern void __fput_sync(struct file *);
  37. #endif /* __LINUX_FILE_H */