[PATCH] fdtable: Make fdarray and fdsets equal in size
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / file.h
CommitLineData
1da177e4
LT
1/*
2 * Wrapper functions for accessing the file_struct fd array.
3 */
4
5#ifndef __LINUX_FILE_H
6#define __LINUX_FILE_H
7
8#include <asm/atomic.h>
9#include <linux/posix_types.h>
10#include <linux/compiler.h>
11#include <linux/spinlock.h>
ab2af1f5 12#include <linux/rcupdate.h>
0c9e63fd 13#include <linux/types.h>
1da177e4
LT
14
15/*
16 * The default fd array needs to be at least BITS_PER_LONG,
17 * as this is the granularity returned by copy_fdset().
18 */
19#define NR_OPEN_DEFAULT BITS_PER_LONG
20
0c9e63fd
ED
21/*
22 * The embedded_fd_set is a small fd_set,
23 * suitable for most tasks (which open <= BITS_PER_LONG files)
24 */
25struct embedded_fd_set {
26 unsigned long fds_bits[1];
27};
28
badf1662
DS
29struct fdtable {
30 unsigned int max_fds;
badf1662
DS
31 struct file ** fd; /* current fd array */
32 fd_set *close_on_exec;
33 fd_set *open_fds;
ab2af1f5
DS
34 struct rcu_head rcu;
35 struct files_struct *free_files;
36 struct fdtable *next;
badf1662
DS
37};
38
1da177e4
LT
39/*
40 * Open file table structure
41 */
42struct files_struct {
0c9e63fd
ED
43 /*
44 * read mostly part
45 */
95e861db 46 atomic_t count;
ab2af1f5 47 struct fdtable *fdt;
badf1662 48 struct fdtable fdtab;
0c9e63fd
ED
49 /*
50 * written part on a separate cache line in SMP
51 */
52 spinlock_t file_lock ____cacheline_aligned_in_smp;
53 int next_fd;
54 struct embedded_fd_set close_on_exec_init;
55 struct embedded_fd_set open_fds_init;
95e861db 56 struct file * fd_array[NR_OPEN_DEFAULT];
1da177e4
LT
57};
58
ab2af1f5 59#define files_fdtable(files) (rcu_dereference((files)->fdt))
badf1662 60
8b7d91eb
CL
61extern struct kmem_cache *filp_cachep;
62
1da177e4
LT
63extern void FASTCALL(__fput(struct file *));
64extern void FASTCALL(fput(struct file *));
65
66static inline void fput_light(struct file *file, int fput_needed)
67{
68 if (unlikely(fput_needed))
69 fput(file);
70}
71
72extern struct file * FASTCALL(fget(unsigned int fd));
73extern struct file * FASTCALL(fget_light(unsigned int fd, int *fput_needed));
74extern void FASTCALL(set_close_on_exec(unsigned int fd, int flag));
75extern void put_filp(struct file *);
76extern int get_unused_fd(void);
77extern void FASTCALL(put_unused_fd(unsigned int fd));
2109a2d1 78struct kmem_cache;
1da177e4
LT
79
80extern struct file ** alloc_fd_array(int);
81extern void free_fd_array(struct file **, int);
82
83extern fd_set *alloc_fdset(int);
84extern void free_fdset(fd_set *, int);
85
86extern int expand_files(struct files_struct *, int nr);
ab2af1f5
DS
87extern void free_fdtable(struct fdtable *fdt);
88extern void __init files_defer_init(void);
1da177e4
LT
89
90static inline struct file * fcheck_files(struct files_struct *files, unsigned int fd)
91{
92 struct file * file = NULL;
badf1662 93 struct fdtable *fdt = files_fdtable(files);
1da177e4 94
badf1662 95 if (fd < fdt->max_fds)
ab2af1f5 96 file = rcu_dereference(fdt->fd[fd]);
1da177e4
LT
97 return file;
98}
99
100/*
101 * Check whether the specified fd has an open file.
102 */
103#define fcheck(fd) fcheck_files(current->files, fd)
104
105extern void FASTCALL(fd_install(unsigned int fd, struct file * file));
106
107struct task_struct;
108
109struct files_struct *get_files_struct(struct task_struct *);
110void FASTCALL(put_files_struct(struct files_struct *fs));
3b9b8ab6 111void reset_files_struct(struct task_struct *, struct files_struct *);
1da177e4 112
5d6538fc
CL
113extern struct kmem_cache *files_cachep;
114
1da177e4 115#endif /* __LINUX_FILE_H */