2 * Wrapper functions for accessing the file_struct fd array.
8 #include <asm/atomic.h>
9 #include <linux/posix_types.h>
10 #include <linux/compiler.h>
11 #include <linux/spinlock.h>
14 * The default fd array needs to be at least BITS_PER_LONG,
15 * as this is the granularity returned by copy_fdset().
17 #define NR_OPEN_DEFAULT BITS_PER_LONG
20 * Open file table structure
24 spinlock_t file_lock
; /* Protects all the below members. Nests inside tsk->alloc_lock */
28 struct file
** fd
; /* current fd array */
29 fd_set
*close_on_exec
;
31 fd_set close_on_exec_init
;
33 struct file
* fd_array
[NR_OPEN_DEFAULT
];
36 extern void FASTCALL(__fput(struct file
*));
37 extern void FASTCALL(fput(struct file
*));
39 static inline void fput_light(struct file
*file
, int fput_needed
)
41 if (unlikely(fput_needed
))
45 extern struct file
* FASTCALL(fget(unsigned int fd
));
46 extern struct file
* FASTCALL(fget_light(unsigned int fd
, int *fput_needed
));
47 extern void FASTCALL(set_close_on_exec(unsigned int fd
, int flag
));
48 extern void put_filp(struct file
*);
49 extern int get_unused_fd(void);
50 extern void FASTCALL(put_unused_fd(unsigned int fd
));
52 extern void filp_ctor(void * objp
, struct kmem_cache_s
*cachep
, unsigned long cflags
);
53 extern void filp_dtor(void * objp
, struct kmem_cache_s
*cachep
, unsigned long dflags
);
55 extern struct file
** alloc_fd_array(int);
56 extern void free_fd_array(struct file
**, int);
58 extern fd_set
*alloc_fdset(int);
59 extern void free_fdset(fd_set
*, int);
61 extern int expand_files(struct files_struct
*, int nr
);
63 static inline struct file
* fcheck_files(struct files_struct
*files
, unsigned int fd
)
65 struct file
* file
= NULL
;
67 if (fd
< files
->max_fds
)
73 * Check whether the specified fd has an open file.
75 #define fcheck(fd) fcheck_files(current->files, fd)
77 extern void FASTCALL(fd_install(unsigned int fd
, struct file
* file
));
81 struct files_struct
*get_files_struct(struct task_struct
*);
82 void FASTCALL(put_files_struct(struct files_struct
*fs
));
84 #endif /* __LINUX_FILE_H */