[XFS] move inode allocation out xfs_iread
[safe/jmp/linux-2.6] / 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 #include "xfs_fs.h"
22
23 struct file;
24 struct xfs_inode;
25 struct xfs_iomap;
26 struct attrlist_cursor_kern;
27
28 /*
29  * Return values for xfs_inactive.  A return value of
30  * VN_INACTIVE_NOCACHE implies that the file system behavior
31  * has disassociated its state and bhv_desc_t from the vnode.
32  */
33 #define VN_INACTIVE_CACHE       0
34 #define VN_INACTIVE_NOCACHE     1
35
36 /*
37  * Flags for read/write calls - same values as IRIX
38  */
39 #define IO_ISAIO        0x00001         /* don't wait for completion */
40 #define IO_ISDIRECT     0x00004         /* bypass page cache */
41 #define IO_INVIS        0x00020         /* don't update inode timestamps */
42
43 /*
44  * Flags for xfs_inode_flush
45  */
46 #define FLUSH_SYNC              1       /* wait for flush to complete   */
47
48 /*
49  * Flush/Invalidate options for vop_toss/flush/flushinval_pages.
50  */
51 #define FI_NONE                 0       /* none */
52 #define FI_REMAPF               1       /* Do a remapf prior to the operation */
53 #define FI_REMAPF_LOCKED        2       /* Do a remapf prior to the operation.
54                                            Prevent VM access to the pages until
55                                            the operation completes. */
56
57
58 extern void     vn_init(void);
59
60 /*
61  * Yeah, these don't take vnode anymore at all, all this should be
62  * cleaned up at some point.
63  */
64 extern void     vn_iowait(struct xfs_inode *ip);
65 extern void     vn_iowake(struct xfs_inode *ip);
66 extern void     vn_ioerror(struct xfs_inode *ip, int error, char *f, int l);
67
68 static inline int vn_count(struct inode *vp)
69 {
70         return atomic_read(&vp->i_count);
71 }
72
73 #define IHOLD(ip) \
74 do { \
75         ASSERT(atomic_read(&VFS_I(ip)->i_count) > 0) ; \
76         atomic_inc(&(VFS_I(ip)->i_count)); \
77         xfs_itrace_hold((ip), __FILE__, __LINE__, (inst_t *)__return_address); \
78 } while (0)
79
80 #define IRELE(ip) \
81 do { \
82         xfs_itrace_rele((ip), __FILE__, __LINE__, (inst_t *)__return_address); \
83         iput(VFS_I(ip)); \
84 } while (0)
85
86 /*
87  * Dealing with bad inodes
88  */
89 static inline int VN_BAD(struct inode *vp)
90 {
91         return is_bad_inode(vp);
92 }
93
94 /*
95  * Extracting atime values in various formats
96  */
97 static inline void vn_atime_to_bstime(struct inode *vp, xfs_bstime_t *bs_atime)
98 {
99         bs_atime->tv_sec = vp->i_atime.tv_sec;
100         bs_atime->tv_nsec = vp->i_atime.tv_nsec;
101 }
102
103 static inline void vn_atime_to_timespec(struct inode *vp, struct timespec *ts)
104 {
105         *ts = vp->i_atime;
106 }
107
108 static inline void vn_atime_to_time_t(struct inode *vp, time_t *tt)
109 {
110         *tt = vp->i_atime.tv_sec;
111 }
112
113 /*
114  * Some useful predicates.
115  */
116 #define VN_MAPPED(vp)   mapping_mapped(vp->i_mapping)
117 #define VN_CACHED(vp)   (vp->i_mapping->nrpages)
118 #define VN_DIRTY(vp)    mapping_tagged(vp->i_mapping, \
119                                         PAGECACHE_TAG_DIRTY)
120
121
122 /*
123  * Tracking vnode activity.
124  */
125 #if defined(XFS_INODE_TRACE)
126
127 #define INODE_TRACE_SIZE        16              /* number of trace entries */
128 #define INODE_KTRACE_ENTRY      1
129 #define INODE_KTRACE_EXIT       2
130 #define INODE_KTRACE_HOLD       3
131 #define INODE_KTRACE_REF        4
132 #define INODE_KTRACE_RELE       5
133
134 extern void _xfs_itrace_entry(struct xfs_inode *, const char *, inst_t *);
135 extern void _xfs_itrace_exit(struct xfs_inode *, const char *, inst_t *);
136 extern void xfs_itrace_hold(struct xfs_inode *, char *, int, inst_t *);
137 extern void _xfs_itrace_ref(struct xfs_inode *, char *, int, inst_t *);
138 extern void xfs_itrace_rele(struct xfs_inode *, char *, int, inst_t *);
139 #define xfs_itrace_entry(ip)    \
140         _xfs_itrace_entry(ip, __func__, (inst_t *)__return_address)
141 #define xfs_itrace_exit(ip)     \
142         _xfs_itrace_exit(ip, __func__, (inst_t *)__return_address)
143 #define xfs_itrace_exit_tag(ip, tag)    \
144         _xfs_itrace_exit(ip, tag, (inst_t *)__return_address)
145 #define xfs_itrace_ref(ip)      \
146         _xfs_itrace_ref(ip, __FILE__, __LINE__, (inst_t *)__return_address)
147
148 #else
149 #define xfs_itrace_entry(a)
150 #define xfs_itrace_exit(a)
151 #define xfs_itrace_exit_tag(a, b)
152 #define xfs_itrace_hold(a, b, c, d)
153 #define xfs_itrace_ref(a)
154 #define xfs_itrace_rele(a, b, c, d)
155 #endif
156
157 #endif  /* __XFS_VNODE_H__ */