aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_vnode.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_vnode.c')
-rw-r--r--fs/xfs/linux-2.6/xfs_vnode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/linux-2.6/xfs_vnode.c b/fs/xfs/linux-2.6/xfs_vnode.c
index 66e36e195f29..6628d96b6fd6 100644
--- a/fs/xfs/linux-2.6/xfs_vnode.c
+++ b/fs/xfs/linux-2.6/xfs_vnode.c
@@ -111,7 +111,7 @@ vn_initialize(
111void 111void
112vn_revalidate_core( 112vn_revalidate_core(
113 bhv_vnode_t *vp, 113 bhv_vnode_t *vp,
114 vattr_t *vap) 114 bhv_vattr_t *vap)
115{ 115{
116 struct inode *inode = vn_to_inode(vp); 116 struct inode *inode = vn_to_inode(vp);
117 117
@@ -147,7 +147,7 @@ vn_revalidate_core(
147int 147int
148__vn_revalidate( 148__vn_revalidate(
149 bhv_vnode_t *vp, 149 bhv_vnode_t *vp,
150 struct vattr *vattr) 150 bhv_vattr_t *vattr)
151{ 151{
152 int error; 152 int error;
153 153
@@ -165,7 +165,7 @@ int
165vn_revalidate( 165vn_revalidate(
166 bhv_vnode_t *vp) 166 bhv_vnode_t *vp)
167{ 167{
168 vattr_t vattr; 168 bhv_vattr_t vattr;
169 169
170 return __vn_revalidate(vp, &vattr); 170 return __vn_revalidate(vp, &vattr);
171} 171}