no explicit xfs_iflush for special inodes during unmount
[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 #define IHOLD(ip) \
69 do { \
70         ASSERT(atomic_read(&VFS_I(ip)->i_count) > 0) ; \
71         atomic_inc(&(VFS_I(ip)->i_count)); \
72         xfs_itrace_hold((ip), __FILE__, __LINE__, (inst_t *)__return_address); \
73 } while (0)
74
75 #define IRELE(ip) \
76 do { \
77         xfs_itrace_rele((ip), __FILE__, __LINE__, (inst_t *)__return_address); \
78         iput(VFS_I(ip)); \
79 } while (0)
80
81 /*
82  * Dealing with bad inodes
83  */
84 static inline int VN_BAD(struct inode *vp)
85 {
86         return is_bad_inode(vp);
87 }
88
89 /*
90  * Extracting atime values in various formats
91  */
92 static inline void vn_atime_to_bstime(struct inode *vp, xfs_bstime_t *bs_atime)
93 {
94         bs_atime->tv_sec = vp->i_atime.tv_sec;
95         bs_atime->tv_nsec = vp->i_atime.tv_nsec;
96 }
97
98 static inline void vn_atime_to_timespec(struct inode *vp, struct timespec *ts)
99 {
100         *ts = vp->i_atime;
101 }
102
103 static inline void vn_atime_to_time_t(struct inode *vp, time_t *tt)
104 {
105         *tt = vp->i_atime.tv_sec;
106 }
107
108 /*
109  * Some useful predicates.
110  */
111 #define VN_MAPPED(vp)   mapping_mapped(vp->i_mapping)
112 #define VN_CACHED(vp)   (vp->i_mapping->nrpages)
113 #define VN_DIRTY(vp)    mapping_tagged(vp->i_mapping, \
114                                         PAGECACHE_TAG_DIRTY)
115
116
117 /*
118  * Tracking vnode activity.
119  */
120 #if defined(XFS_INODE_TRACE)
121
122 #define INODE_TRACE_SIZE        16              /* number of trace entries */
123 #define INODE_KTRACE_ENTRY      1
124 #define INODE_KTRACE_EXIT       2
125 #define INODE_KTRACE_HOLD       3
126 #define INODE_KTRACE_REF        4
127 #define INODE_KTRACE_RELE       5
128
129 extern void _xfs_itrace_entry(struct xfs_inode *, const char *, inst_t *);
130 extern void _xfs_itrace_exit(struct xfs_inode *, const char *, inst_t *);
131 extern void xfs_itrace_hold(struct xfs_inode *, char *, int, inst_t *);
132 extern void _xfs_itrace_ref(struct xfs_inode *, char *, int, inst_t *);
133 extern void xfs_itrace_rele(struct xfs_inode *, char *, int, inst_t *);
134 #define xfs_itrace_entry(ip)    \
135         _xfs_itrace_entry(ip, __func__, (inst_t *)__return_address)
136 #define xfs_itrace_exit(ip)     \
137         _xfs_itrace_exit(ip, __func__, (inst_t *)__return_address)
138 #define xfs_itrace_exit_tag(ip, tag)    \
139         _xfs_itrace_exit(ip, tag, (inst_t *)__return_address)
140 #define xfs_itrace_ref(ip)      \
141         _xfs_itrace_ref(ip, __FILE__, __LINE__, (inst_t *)__return_address)
142
143 #else
144 #define xfs_itrace_entry(a)
145 #define xfs_itrace_exit(a)
146 #define xfs_itrace_exit_tag(a, b)
147 #define xfs_itrace_hold(a, b, c, d)
148 #define xfs_itrace_ref(a)
149 #define xfs_itrace_rele(a, b, c, d)
150 #endif
151
152 #endif  /* __XFS_VNODE_H__ */