diff options
Diffstat (limited to 'include/linux/file.h')
-rw-r--r-- | include/linux/file.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/file.h b/include/linux/file.h index 6b2fb032416c..3fcddff56bc4 100644 --- a/include/linux/file.h +++ b/include/linux/file.h | |||
@@ -13,6 +13,7 @@ | |||
13 | struct file; | 13 | struct file; |
14 | 14 | ||
15 | extern void fput(struct file *); | 15 | extern void fput(struct file *); |
16 | extern void fput_many(struct file *, unsigned int); | ||
16 | 17 | ||
17 | struct file_operations; | 18 | struct file_operations; |
18 | struct vfsmount; | 19 | struct vfsmount; |
@@ -44,6 +45,7 @@ static inline void fdput(struct fd fd) | |||
44 | } | 45 | } |
45 | 46 | ||
46 | extern struct file *fget(unsigned int fd); | 47 | extern struct file *fget(unsigned int fd); |
48 | extern struct file *fget_many(unsigned int fd, unsigned int refs); | ||
47 | extern struct file *fget_raw(unsigned int fd); | 49 | extern struct file *fget_raw(unsigned int fd); |
48 | extern unsigned long __fdget(unsigned int fd); | 50 | extern unsigned long __fdget(unsigned int fd); |
49 | extern unsigned long __fdget_raw(unsigned int fd); | 51 | extern unsigned long __fdget_raw(unsigned int fd); |