2005-04-21 16:53:53 +02:00
|
|
|
/* This is the filp table. It is an intermediary between file descriptors and
|
|
|
|
* inodes. A slot is free if filp_count == 0.
|
|
|
|
*/
|
|
|
|
|
|
|
|
EXTERN struct filp {
|
|
|
|
mode_t filp_mode; /* RW bits, telling how file is opened */
|
|
|
|
int filp_flags; /* flags from open and fcntl */
|
2008-02-22 15:19:23 +01:00
|
|
|
int filp_state; /* state for crash recovery */
|
2005-04-21 16:53:53 +02:00
|
|
|
int filp_count; /* how many file descriptors share this slot?*/
|
2006-10-25 15:40:36 +02:00
|
|
|
/* struct inode *filp_ino;*/ /* pointer to the inode */
|
|
|
|
|
|
|
|
struct vnode *filp_vno;
|
|
|
|
|
2006-11-27 15:21:43 +01:00
|
|
|
u64_t filp_pos; /* file position */
|
2005-06-17 15:41:12 +02:00
|
|
|
|
|
|
|
/* the following fields are for select() and are owned by the generic
|
|
|
|
* select() code (i.e., fd-type-specific select() code can't touch these).
|
|
|
|
*/
|
|
|
|
int filp_selectors; /* select()ing processes blocking on this fd */
|
|
|
|
int filp_select_ops; /* interested in these SEL_* operations */
|
2008-02-22 15:19:23 +01:00
|
|
|
int filp_select_flags; /* Select flags for the filp */
|
2005-06-17 15:41:12 +02:00
|
|
|
|
|
|
|
/* following are for fd-type-specific select() */
|
|
|
|
int filp_pipe_select_ops;
|
2005-04-21 16:53:53 +02:00
|
|
|
} filp[NR_FILPS];
|
|
|
|
|
|
|
|
#define FILP_CLOSED 0 /* filp_mode: associated device closed */
|
|
|
|
|
2008-02-22 15:19:23 +01:00
|
|
|
#define FS_NORMAL 0 /* file descriptor can be used normally */
|
|
|
|
#define FS_NEEDS_REOPEN 1 /* file descriptor needs to be re-opened */
|
|
|
|
|
|
|
|
#define FSF_UPDATE 1 /* The driver should be informed about new
|
|
|
|
* state.
|
|
|
|
*/
|
|
|
|
#define FSF_BUSY 2 /* Select operation sent to driver but no
|
|
|
|
* reply yet.
|
|
|
|
*/
|
|
|
|
#define FSF_BLOCK 4 /* Request is blocking, the driver should
|
|
|
|
* keep state.
|
|
|
|
*/
|
|
|
|
|