diff options
author | Nathan Scott <nathans@sgi.com> | 2006-06-09 03:07:12 -0400 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-06-09 03:07:12 -0400 |
commit | 8285fb58e75bfdb447c7a2c533ec9efdb238f966 (patch) | |
tree | 4bcfa74d3328ff5d71437556d24019be98c1d9fa /fs/xfs/linux-2.6/xfs_vnode.c | |
parent | 67fcaa73adafb19139a7cd8ab133592b6a0a0901 (diff) |
[XFS] Resolve a namespace collision on remaining vtypes for FreeBSD
porters.
SGI-PV: 953338
SGI-Modid: xfs-linux-melb:xfs-kern:26108a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_vnode.c')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_vnode.c | 6 |
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( | |||
111 | void | 111 | void |
112 | vn_revalidate_core( | 112 | vn_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( | |||
147 | int | 147 | int |
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 | |||
165 | vn_revalidate( | 165 | vn_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 | } |