Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Wrapper functions for accessing the file_struct fd array. |
| 3 | */ |
| 4 | |
| 5 | #ifndef __LINUX_FILE_H |
| 6 | #define __LINUX_FILE_H |
| 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/compiler.h> |
Eric Dumazet | 0c9e63f | 2006-03-23 03:00:12 -0800 | [diff] [blame] | 9 | #include <linux/types.h> |
Al Viro | 9f3acc3 | 2008-04-24 07:44:08 -0400 | [diff] [blame] | 10 | #include <linux/posix_types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
Al Viro | 9f3acc3 | 2008-04-24 07:44:08 -0400 | [diff] [blame] | 12 | struct file; |
Christoph Lameter | 8b7d91e | 2006-12-06 20:32:52 -0800 | [diff] [blame] | 13 | |
Harvey Harrison | b3c9752 | 2008-02-13 15:03:15 -0800 | [diff] [blame] | 14 | extern void __fput(struct file *); |
| 15 | extern void fput(struct file *); |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 16 | extern void drop_file_write_access(struct file *file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 18 | struct file_operations; |
| 19 | struct vfsmount; |
| 20 | struct dentry; |
Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 21 | struct path; |
| 22 | extern struct file *alloc_file(struct path *, fmode_t mode, |
| 23 | const struct file_operations *fop); |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | static inline void fput_light(struct file *file, int fput_needed) |
| 26 | { |
| 27 | if (unlikely(fput_needed)) |
| 28 | fput(file); |
| 29 | } |
| 30 | |
Harvey Harrison | b3c9752 | 2008-02-13 15:03:15 -0800 | [diff] [blame] | 31 | extern struct file *fget(unsigned int fd); |
| 32 | extern struct file *fget_light(unsigned int fd, int *fput_needed); |
| 33 | extern void set_close_on_exec(unsigned int fd, int flag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | extern void put_filp(struct file *); |
Al Viro | 1027abe | 2008-07-30 04:13:04 -0400 | [diff] [blame] | 35 | extern int alloc_fd(unsigned start, unsigned flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | extern int get_unused_fd(void); |
Al Viro | 1027abe | 2008-07-30 04:13:04 -0400 | [diff] [blame] | 37 | #define get_unused_fd_flags(flags) alloc_fd(0, (flags)) |
Harvey Harrison | b3c9752 | 2008-02-13 15:03:15 -0800 | [diff] [blame] | 38 | extern void put_unused_fd(unsigned int fd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Harvey Harrison | b3c9752 | 2008-02-13 15:03:15 -0800 | [diff] [blame] | 40 | extern void fd_install(unsigned int fd, struct file *file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #endif /* __LINUX_FILE_H */ |