2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
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.
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.
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
18 #ifndef __XFS_VNODE_H__
19 #define __XFS_VNODE_H__
26 struct attrlist_cursor_kern;
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.
33 #define VN_INACTIVE_CACHE 0
34 #define VN_INACTIVE_NOCACHE 1
37 * Flags for read/write calls - same values as IRIX
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 */
44 * Flags for xfs_inode_flush
46 #define FLUSH_SYNC 1 /* wait for flush to complete */
49 * Flush/Invalidate options for vop_toss/flush/flushinval_pages.
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. */
58 extern void vn_init(void);
61 * Yeah, these don't take vnode anymore at all, all this should be
62 * cleaned up at some point.
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);
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); \
77 xfs_itrace_rele((ip), __FILE__, __LINE__, (inst_t *)__return_address); \
82 * Dealing with bad inodes
84 static inline int VN_BAD(struct inode *vp)
86 return is_bad_inode(vp);
90 * Extracting atime values in various formats
92 static inline void vn_atime_to_bstime(struct inode *vp, xfs_bstime_t *bs_atime)
94 bs_atime->tv_sec = vp->i_atime.tv_sec;
95 bs_atime->tv_nsec = vp->i_atime.tv_nsec;
98 static inline void vn_atime_to_timespec(struct inode *vp, struct timespec *ts)
103 static inline void vn_atime_to_time_t(struct inode *vp, time_t *tt)
105 *tt = vp->i_atime.tv_sec;
109 * Some useful predicates.
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, \
118 * Tracking vnode activity.
120 #if defined(XFS_INODE_TRACE)
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
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)
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)
152 #endif /* __XFS_VNODE_H__ */