support-reiserfs-20010129
[openafs.git] / src / afs / LINUX / osi_vfs.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11  * Linux interpretations of vnode and vfs structs.
12  *
13  * The Linux "inode" has been abstracted to the fs independent part to avoid
14  * wasting 100+bytes per vnode.
15  */
16
17 #ifndef OSI_VFS_H_
18 #define OSI_VFS_H_
19
20 /* The vnode should match the current implementation of the fs independent
21  * part of the Linux inode.
22  */
23 /* The first cut is to continue to use a separate vnode pool. */
24 typedef struct vnode {
25         struct list_head        i_hash;
26         struct list_head        i_list;
27         struct list_head        i_dentry;
28 #if defined(AFS_LINUX24_ENV)
29         struct list_head        i_dirty_buffers;
30 #endif
31         unsigned long           i_ino;
32         unsigned int            i_count;
33         kdev_t                  i_dev;
34         umode_t                 i_mode;
35         nlink_t                 i_nlink;
36         uid_t                   i_uid;
37         gid_t                   i_gid;
38         kdev_t                  i_rdev;
39 #if defined(AFS_LINUX24_ENV) || defined(_REISER_FS_I) /* XXX need better test */
40         loff_t                  i_size;
41 #else
42         off_t                   i_size;
43 #endif
44         time_t                  i_atime;
45         time_t                  i_mtime;
46         time_t                  i_ctime;
47         unsigned long           i_blksize;
48         unsigned long           i_blocks;
49         unsigned long           i_version;
50 #if !defined(AFS_LINUX24_ENV)
51         unsigned long           i_nrpages;
52 #endif
53         struct semaphore        i_sem;
54 #if defined(AFS_LINUX24_ENV)
55         struct semaphore        i_zombie;
56 #else
57         struct semaphore        i_atomic_write;
58 #endif
59         struct inode_operations *i_op;
60 #if defined(AFS_LINUX24_ENV)
61         struct file_operations  *i_fop;
62 #endif
63         struct super_block      *i_sb;
64 #if defined(AFS_LINUX24_ENV)
65         wait_queue_head_t       i_wait;
66 #else
67         struct wait_queue       *i_wait;
68 #endif
69         struct file_lock        *i_flock;
70 #if defined(AFS_LINUX24_ENV)
71         struct address_space    *i_mapping;
72         struct address_space    i_data;
73 #else
74         struct vm_area_struct   *i_mmap;
75         struct page             *i_pages;
76 #endif
77         struct dquot            *i_dquot[MAXQUOTAS];
78 #if defined(AFS_LINUX24_ENV)
79         struct pipe_inode_info  *i_pipe;
80         struct block_device     *i_bdev;
81         unsigned long           i_dnotify_mask;
82         struct dnotify_struct   *i_dnotify;
83 #endif
84
85         unsigned long           i_state;
86
87         unsigned int            i_flags;
88 #if !defined(AFS_LINUX24_ENV)
89         unsigned char           i_pipe;
90 #endif
91         unsigned char           i_sock;
92
93 #if defined(AFS_LINUX24_ENV)
94         atomic_t                i_writecount;
95 #else
96         int                     i_writecount;
97 #endif
98         unsigned int            i_attr_flags;
99 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,10)
100         __u32                   i_generation;
101 #endif
102 #ifdef notdef
103         union {
104                 struct pipe_inode_info          pipe_i;
105                 struct minix_inode_info         minix_i;
106                 struct ext2_inode_info          ext2_i;
107                 struct hpfs_inode_info          hpfs_i;
108                 struct ntfs_inode_info          ntfs_i;
109                 struct msdos_inode_info         msdos_i;
110                 struct umsdos_inode_info        umsdos_i;
111                 struct iso_inode_info           isofs_i;
112                 struct nfs_inode_info           nfs_i;
113                 struct sysv_inode_info          sysv_i;
114                 struct affs_inode_info          affs_i;
115                 struct ufs_inode_info           ufs_i;
116                 struct romfs_inode_info         romfs_i;
117                 struct coda_inode_info          coda_i;
118                 struct smb_inode_info           smbfs_i;
119                 struct hfs_inode_info           hfs_i;
120                 struct adfs_inode_info          adfs_i;
121                 struct qnx4_inode_info          qnx4_i;    
122                 struct socket                   socket_i;
123                 void                            *generic_ip;
124         } u;
125 #endif
126 } vnode_t;
127
128 /* Map vnode fields to inode fields. */
129 #define i_number        i_ino
130 #define v_count         i_count
131 #define v_op            i_op
132 #if defined(AFS_LINUX24_ENV)
133 #define v_fop           i_fop
134 #endif
135 #define v_type          i_mode
136 #define v_vfsp          i_sb
137 #define vfs_vnodecovered s_covered
138
139 /* v_type bits map to mode bits: */
140 #define VNON 0
141 #define VREG S_IFREG
142 #define VDIR S_IFDIR
143 #define VBLK S_IFBLK
144 #define VCHR S_IFCHR
145 #define VLNK S_IFLNK
146 #define VSOCK S_IFSOCK
147
148 /* vcexcl - used only by afs_create */
149 enum vcexcl { EXCL, NONEXCL } ;
150
151 /* afs_open and afs_close needs to distinguish these cases */
152 #define FWRITE  O_WRONLY|O_RDWR|O_APPEND
153 #define FTRUNC  O_TRUNC
154
155
156 #define IO_APPEND O_APPEND
157 #define FSYNC O_SYNC
158
159 #define VTOI(V)  ((struct inode*)V)
160 #define VN_HOLD(V) ((vnode_t*)V)->i_count++;
161 #define VN_RELE(V) osi_iput((struct inode *)V);
162 #define VFS_STATFS(V, S) ((V)->s_op->statfs)((V), (S), sizeof(*(S)))
163
164
165
166 /* Various mode bits */
167 #define VWRITE  S_IWUSR
168 #define VREAD   S_IRUSR
169 #define VEXEC   S_IXUSR
170 #define VSUID   S_ISUID
171 #define VSGID   S_ISGID
172
173
174 #define vfs super_block
175
176 typedef struct vattr {
177     int         va_type;        /* One of v_types above. */
178     size_t      va_size;
179     unsigned long va_blocks;
180     unsigned long va_blocksize;
181     int         va_mask;        /* AT_xxx operation to perform. */
182     umode_t     va_mode;        /* mode bits. */
183     uid_t       va_uid;
184     gid_t       va_gid;
185     int         va_fsid;        /* Not used? */
186     dev_t       va_rdev;
187     ino_t       va_nodeid;      /* Inode number */
188     nlink_t     va_nlink;       /* link count for file. */
189     struct timeval va_atime;
190     struct timeval va_mtime;
191     struct timeval va_ctime;
192 } vattr_t;
193
194 #define VATTR_NULL(A) memset(A, 0, sizeof(struct vattr))
195
196
197 /* va_masks - these should match their respective ATTR_xxx #defines in fs.h.
198  * afs_notify_change has to use the attr bits in both the Linux and AFS
199  * meanings. The glue layer code uses the ATTR_xxx style names.
200  */
201 #define AT_SIZE         ATTR_SIZE
202 #define AT_MODE         ATTR_MODE
203 #define AT_UID          ATTR_UID
204 #define AT_GID          ATTR_GID
205 #define AT_MTIME        ATTR_MTIME
206
207
208 #define vnodeops inode_operations
209
210 #endif /* OSI_VFS_H_ */