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
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 void set_close_on_exec(unsigned int fd, int flag);
L
Linus Torvalds 已提交
34
extern void put_filp(struct file *);
35
extern int alloc_fd(unsigned start, unsigned flags);
L
Linus Torvalds 已提交
36
extern int get_unused_fd(void);
37
#define get_unused_fd_flags(flags) alloc_fd(0, (flags))
38
extern void put_unused_fd(unsigned int fd);
L
Linus Torvalds 已提交
39

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

#endif /* __LINUX_FILE_H */