file.h 1.3 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
extern void fput(struct file *);
L
Linus Torvalds 已提交
15

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

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

29 30
extern struct file *fget(unsigned int fd);
extern struct file *fget_light(unsigned int fd, int *fput_needed);
31 32
extern struct file *fget_raw(unsigned int fd);
extern struct file *fget_raw_light(unsigned int fd, int *fput_needed);
33
extern int f_dupfd(unsigned int from, struct file *file, unsigned flags);
34
extern void set_close_on_exec(unsigned int fd, int flag);
35
extern bool get_close_on_exec(unsigned int fd);
L
Linus Torvalds 已提交
36
extern void put_filp(struct file *);
37
extern int alloc_fd(unsigned start, unsigned flags);
A
Al Viro 已提交
38 39
extern int get_unused_fd_flags(unsigned flags);
#define get_unused_fd() get_unused_fd_flags(0)
40
extern void put_unused_fd(unsigned int fd);
L
Linus Torvalds 已提交
41

42
extern void fd_install(unsigned int fd, struct file *file);
L
Linus Torvalds 已提交
43

A
Al Viro 已提交
44 45 46
extern void flush_delayed_fput(void);
extern void __fput_sync(struct file *);

L
Linus Torvalds 已提交
47
#endif /* __LINUX_FILE_H */