aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_vnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_vnode.h')
-rw-r--r--fs/xfs/linux-2.6/xfs_vnode.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/fs/xfs/linux-2.6/xfs_vnode.h b/fs/xfs/linux-2.6/xfs_vnode.h
index c8af208a73dc..321346d95267 100644
--- a/fs/xfs/linux-2.6/xfs_vnode.h
+++ b/fs/xfs/linux-2.6/xfs_vnode.h
@@ -29,7 +29,6 @@ typedef __u64 bhv_vnumber_t;
29 29
30typedef struct bhv_vnode { 30typedef struct bhv_vnode {
31 bhv_vnumber_t v_number; /* in-core vnode number */ 31 bhv_vnumber_t v_number; /* in-core vnode number */
32 atomic_t v_iocount; /* outstanding I/O count */
33#ifdef XFS_VNODE_TRACE 32#ifdef XFS_VNODE_TRACE
34 struct ktrace *v_trace; /* trace header structure */ 33 struct ktrace *v_trace; /* trace header structure */
35#endif 34#endif
@@ -202,10 +201,13 @@ extern int vn_revalidate(struct bhv_vnode *);
202extern int __vn_revalidate(struct bhv_vnode *, bhv_vattr_t *); 201extern int __vn_revalidate(struct bhv_vnode *, bhv_vattr_t *);
203extern void vn_revalidate_core(struct bhv_vnode *, bhv_vattr_t *); 202extern void vn_revalidate_core(struct bhv_vnode *, bhv_vattr_t *);
204 203
205extern void vn_iowait(struct bhv_vnode *vp); 204/*
206extern void vn_iowake(struct bhv_vnode *vp); 205 * Yeah, these don't take vnode anymore at all, all this should be
207 206 * cleaned up at some point.
208extern void vn_ioerror(struct bhv_vnode *vp, int error, char *f, int l); 207 */
208extern void vn_iowait(struct xfs_inode *ip);
209extern void vn_iowake(struct xfs_inode *ip);
210extern void vn_ioerror(struct xfs_inode *ip, int error, char *f, int l);
209 211
210static inline int vn_count(struct bhv_vnode *vp) 212static inline int vn_count(struct bhv_vnode *vp)
211{ 213{