file.h 1.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8
/*
 * Wrapper functions for accessing the file_struct fd array.
 */

#ifndef __LINUX_FILE_H
#define __LINUX_FILE_H

#include <linux/compiler.h>
9
#include <linux/types.h>
A
Al Viro 已提交
10
#include <linux/posix_types.h>
L
Linus Torvalds 已提交
11

A
Al Viro 已提交
12
struct file;
13

14 15
extern void __fput(struct file *);
extern void fput(struct file *);
16
extern void drop_file_write_access(struct file *file);
L
Linus Torvalds 已提交
17

18 19 20 21
struct file_operations;
struct vfsmount;
struct dentry;
extern struct file *alloc_file(struct vfsmount *, struct dentry *dentry,
22
		fmode_t mode, const struct file_operations *fop);
23

L
Linus Torvalds 已提交
24 25 26 27 28 29
static inline void fput_light(struct file *file, int fput_needed)
{
	if (unlikely(fput_needed))
		fput(file);
}

30 31 32
extern struct file *fget(unsigned int fd);
extern struct file *fget_light(unsigned int fd, int *fput_needed);
extern void set_close_on_exec(unsigned int fd, int flag);
L
Linus Torvalds 已提交
33
extern void put_filp(struct file *);
34
extern int alloc_fd(unsigned start, unsigned flags);
L
Linus Torvalds 已提交
35
extern int get_unused_fd(void);
36
#define get_unused_fd_flags(flags) alloc_fd(0, (flags))
37
extern void put_unused_fd(unsigned int fd);
L
Linus Torvalds 已提交
38

39
extern void fd_install(unsigned int fd, struct file *file);
L
Linus Torvalds 已提交
40 41

#endif /* __LINUX_FILE_H */