]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - fs/xfs/linux-2.6/xfs_vnode.h
[XFS] xfs_setattr currently doesn't just handle the attributes set through
[linux-2.6-omap-h63xx.git] / fs / xfs / linux-2.6 / xfs_vnode.h
1 /*
2  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it would be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write the Free Software Foundation,
16  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18 #ifndef __XFS_VNODE_H__
19 #define __XFS_VNODE_H__
20
21 struct file;
22 struct bhv_vattr;
23 struct xfs_iomap;
24 struct attrlist_cursor_kern;
25
26 typedef struct inode    bhv_vnode_t;
27
28 /*
29  * Vnode to Linux inode mapping.
30  */
31 static inline bhv_vnode_t *vn_from_inode(struct inode *inode)
32 {
33         return inode;
34 }
35 static inline struct inode *vn_to_inode(bhv_vnode_t *vnode)
36 {
37         return vnode;
38 }
39
40 /*
41  * Return values for xfs_inactive.  A return value of
42  * VN_INACTIVE_NOCACHE implies that the file system behavior
43  * has disassociated its state and bhv_desc_t from the vnode.
44  */
45 #define VN_INACTIVE_CACHE       0
46 #define VN_INACTIVE_NOCACHE     1
47
48 /*
49  * Flags for read/write calls - same values as IRIX
50  */
51 #define IO_ISAIO        0x00001         /* don't wait for completion */
52 #define IO_ISDIRECT     0x00004         /* bypass page cache */
53 #define IO_INVIS        0x00020         /* don't update inode timestamps */
54
55 /*
56  * Flags for xfs_inode_flush
57  */
58 #define FLUSH_SYNC              1       /* wait for flush to complete   */
59
60 /*
61  * Flush/Invalidate options for vop_toss/flush/flushinval_pages.
62  */
63 #define FI_NONE                 0       /* none */
64 #define FI_REMAPF               1       /* Do a remapf prior to the operation */
65 #define FI_REMAPF_LOCKED        2       /* Do a remapf prior to the operation.
66                                            Prevent VM access to the pages until
67                                            the operation completes. */
68
69 /*
70  * Vnode attributes.  va_mask indicates those attributes the caller
71  * wants to set or extract.
72  */
73 typedef struct bhv_vattr {
74         int             va_mask;        /* bit-mask of attributes present */
75         mode_t          va_mode;        /* file access mode and type */
76         xfs_nlink_t     va_nlink;       /* number of references to file */
77         uid_t           va_uid;         /* owner user id */
78         gid_t           va_gid;         /* owner group id */
79         xfs_ino_t       va_nodeid;      /* file id */
80         xfs_off_t       va_size;        /* file size in bytes */
81         u_long          va_blocksize;   /* blocksize preferred for i/o */
82         struct timespec va_atime;       /* time of last access */
83         struct timespec va_mtime;       /* time of last modification */
84         struct timespec va_ctime;       /* time file changed */
85         u_int           va_gen;         /* generation number of file */
86         xfs_dev_t       va_rdev;        /* device the special file represents */
87         __int64_t       va_nblocks;     /* number of blocks allocated */
88         u_long          va_xflags;      /* random extended file flags */
89         u_long          va_extsize;     /* file extent size */
90         u_long          va_nextents;    /* number of extents in file */
91         u_long          va_anextents;   /* number of attr extents in file */
92         prid_t          va_projid;      /* project id */
93 } bhv_vattr_t;
94
95 /*
96  * setattr or getattr attributes
97  */
98 #define XFS_AT_TYPE             0x00000001
99 #define XFS_AT_MODE             0x00000002
100 #define XFS_AT_UID              0x00000004
101 #define XFS_AT_GID              0x00000008
102 #define XFS_AT_FSID             0x00000010
103 #define XFS_AT_NODEID           0x00000020
104 #define XFS_AT_NLINK            0x00000040
105 #define XFS_AT_SIZE             0x00000080
106 #define XFS_AT_ATIME            0x00000100
107 #define XFS_AT_MTIME            0x00000200
108 #define XFS_AT_CTIME            0x00000400
109 #define XFS_AT_RDEV             0x00000800
110 #define XFS_AT_BLKSIZE          0x00001000
111 #define XFS_AT_NBLOCKS          0x00002000
112 #define XFS_AT_VCODE            0x00004000
113 #define XFS_AT_MAC              0x00008000
114 #define XFS_AT_UPDATIME         0x00010000
115 #define XFS_AT_UPDMTIME         0x00020000
116 #define XFS_AT_UPDCTIME         0x00040000
117 #define XFS_AT_ACL              0x00080000
118 #define XFS_AT_CAP              0x00100000
119 #define XFS_AT_INF              0x00200000
120 #define XFS_AT_NEXTENTS         0x01000000
121 #define XFS_AT_ANEXTENTS        0x02000000
122 #define XFS_AT_SIZE_NOPERM      0x08000000
123 #define XFS_AT_GENCOUNT         0x10000000
124
125 #define XFS_AT_TIMES    (XFS_AT_ATIME|XFS_AT_MTIME|XFS_AT_CTIME)
126
127 #define XFS_AT_UPDTIMES (XFS_AT_UPDATIME|XFS_AT_UPDMTIME|XFS_AT_UPDCTIME)
128
129 #define XFS_AT_NOSET    (XFS_AT_NLINK|XFS_AT_RDEV|XFS_AT_FSID|XFS_AT_NODEID|\
130                 XFS_AT_TYPE|XFS_AT_BLKSIZE|XFS_AT_NBLOCKS|XFS_AT_VCODE|\
131                 XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|XFS_AT_GENCOUNT)
132
133 extern void     vn_init(void);
134 extern int      vn_revalidate(bhv_vnode_t *);
135
136 /*
137  * Yeah, these don't take vnode anymore at all, all this should be
138  * cleaned up at some point.
139  */
140 extern void     vn_iowait(struct xfs_inode *ip);
141 extern void     vn_iowake(struct xfs_inode *ip);
142 extern void     vn_ioerror(struct xfs_inode *ip, int error, char *f, int l);
143
144 static inline int vn_count(bhv_vnode_t *vp)
145 {
146         return atomic_read(&vn_to_inode(vp)->i_count);
147 }
148
149 /*
150  * Vnode reference counting functions (and macros for compatibility).
151  */
152 extern bhv_vnode_t      *vn_hold(bhv_vnode_t *);
153
154 #if defined(XFS_INODE_TRACE)
155 #define VN_HOLD(vp)             \
156         ((void)vn_hold(vp),     \
157           xfs_itrace_hold(xfs_vtoi(vp), __FILE__, __LINE__, (inst_t *)__return_address))
158 #define VN_RELE(vp)             \
159           (xfs_itrace_rele(xfs_vtoi(vp), __FILE__, __LINE__, (inst_t *)__return_address), \
160            iput(vn_to_inode(vp)))
161 #else
162 #define VN_HOLD(vp)             ((void)vn_hold(vp))
163 #define VN_RELE(vp)             (iput(vn_to_inode(vp)))
164 #endif
165
166 static inline bhv_vnode_t *vn_grab(bhv_vnode_t *vp)
167 {
168         struct inode *inode = igrab(vn_to_inode(vp));
169         return inode ? vn_from_inode(inode) : NULL;
170 }
171
172 /*
173  * Dealing with bad inodes
174  */
175 static inline int VN_BAD(bhv_vnode_t *vp)
176 {
177         return is_bad_inode(vn_to_inode(vp));
178 }
179
180 /*
181  * Extracting atime values in various formats
182  */
183 static inline void vn_atime_to_bstime(bhv_vnode_t *vp, xfs_bstime_t *bs_atime)
184 {
185         bs_atime->tv_sec = vp->i_atime.tv_sec;
186         bs_atime->tv_nsec = vp->i_atime.tv_nsec;
187 }
188
189 static inline void vn_atime_to_timespec(bhv_vnode_t *vp, struct timespec *ts)
190 {
191         *ts = vp->i_atime;
192 }
193
194 static inline void vn_atime_to_time_t(bhv_vnode_t *vp, time_t *tt)
195 {
196         *tt = vp->i_atime.tv_sec;
197 }
198
199 /*
200  * Some useful predicates.
201  */
202 #define VN_MAPPED(vp)   mapping_mapped(vn_to_inode(vp)->i_mapping)
203 #define VN_CACHED(vp)   (vn_to_inode(vp)->i_mapping->nrpages)
204 #define VN_DIRTY(vp)    mapping_tagged(vn_to_inode(vp)->i_mapping, \
205                                         PAGECACHE_TAG_DIRTY)
206
207 /*
208  * Flags to vop_setattr/getattr.
209  */
210 #define ATTR_UTIME      0x01    /* non-default utime(2) request */
211 #define ATTR_DMI        0x08    /* invocation from a DMI function */
212 #define ATTR_LAZY       0x80    /* set/get attributes lazily */
213 #define ATTR_NONBLOCK   0x100   /* return EAGAIN if operation would block */
214 #define ATTR_NOLOCK     0x200   /* Don't grab any conflicting locks */
215 #define ATTR_NOSIZETOK  0x400   /* Don't get the SIZE token */
216
217 /*
218  * Tracking vnode activity.
219  */
220 #if defined(XFS_INODE_TRACE)
221
222 #define INODE_TRACE_SIZE        16              /* number of trace entries */
223 #define INODE_KTRACE_ENTRY      1
224 #define INODE_KTRACE_EXIT       2
225 #define INODE_KTRACE_HOLD       3
226 #define INODE_KTRACE_REF        4
227 #define INODE_KTRACE_RELE       5
228
229 extern void _xfs_itrace_entry(struct xfs_inode *, const char *, inst_t *);
230 extern void _xfs_itrace_exit(struct xfs_inode *, const char *, inst_t *);
231 extern void xfs_itrace_hold(struct xfs_inode *, char *, int, inst_t *);
232 extern void _xfs_itrace_ref(struct xfs_inode *, char *, int, inst_t *);
233 extern void xfs_itrace_rele(struct xfs_inode *, char *, int, inst_t *);
234 #define xfs_itrace_entry(ip)    \
235         _xfs_itrace_entry(ip, __func__, (inst_t *)__return_address)
236 #define xfs_itrace_exit(ip)     \
237         _xfs_itrace_exit(ip, __func__, (inst_t *)__return_address)
238 #define xfs_itrace_exit_tag(ip, tag)    \
239         _xfs_itrace_exit(ip, tag, (inst_t *)__return_address)
240 #define xfs_itrace_ref(ip)      \
241         _xfs_itrace_ref(ip, __FILE__, __LINE__, (inst_t *)__return_address)
242
243 #else
244 #define xfs_itrace_entry(a)
245 #define xfs_itrace_exit(a)
246 #define xfs_itrace_exit_tag(a, b)
247 #define xfs_itrace_hold(a, b, c, d)
248 #define xfs_itrace_ref(a)
249 #define xfs_itrace_rele(a, b, c, d)
250 #endif
251
252 #endif  /* __XFS_VNODE_H__ */