aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_vnodeops.c
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2006-06-09 03:07:12 -0400
committerNathan Scott <nathans@sgi.com>2006-06-09 03:07:12 -0400
commit8285fb58e75bfdb447c7a2c533ec9efdb238f966 (patch)
tree4bcfa74d3328ff5d71437556d24019be98c1d9fa /fs/xfs/xfs_vnodeops.c
parent67fcaa73adafb19139a7cd8ab133592b6a0a0901 (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/xfs_vnodeops.c')
-rw-r--r--fs/xfs/xfs_vnodeops.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/fs/xfs/xfs_vnodeops.c b/fs/xfs/xfs_vnodeops.c
index f3c2deeed0a3..26d96d1b25cd 100644
--- a/fs/xfs/xfs_vnodeops.c
+++ b/fs/xfs/xfs_vnodeops.c
@@ -117,7 +117,7 @@ xfs_close(
117STATIC int 117STATIC int
118xfs_getattr( 118xfs_getattr(
119 bhv_desc_t *bdp, 119 bhv_desc_t *bdp,
120 vattr_t *vap, 120 bhv_vattr_t *vap,
121 int flags, 121 int flags,
122 cred_t *credp) 122 cred_t *credp)
123{ 123{
@@ -250,7 +250,7 @@ xfs_getattr(
250int 250int
251xfs_setattr( 251xfs_setattr(
252 bhv_desc_t *bdp, 252 bhv_desc_t *bdp,
253 vattr_t *vap, 253 bhv_vattr_t *vap,
254 int flags, 254 int flags,
255 cred_t *credp) 255 cred_t *credp)
256{ 256{
@@ -1815,7 +1815,7 @@ xfs_inactive(
1815STATIC int 1815STATIC int
1816xfs_lookup( 1816xfs_lookup(
1817 bhv_desc_t *dir_bdp, 1817 bhv_desc_t *dir_bdp,
1818 vname_t *dentry, 1818 bhv_vname_t *dentry,
1819 bhv_vnode_t **vpp, 1819 bhv_vnode_t **vpp,
1820 int flags, 1820 int flags,
1821 bhv_vnode_t *rdir, 1821 bhv_vnode_t *rdir,
@@ -1852,8 +1852,8 @@ xfs_lookup(
1852STATIC int 1852STATIC int
1853xfs_create( 1853xfs_create(
1854 bhv_desc_t *dir_bdp, 1854 bhv_desc_t *dir_bdp,
1855 vname_t *dentry, 1855 bhv_vname_t *dentry,
1856 vattr_t *vap, 1856 bhv_vattr_t *vap,
1857 bhv_vnode_t **vpp, 1857 bhv_vnode_t **vpp,
1858 cred_t *credp) 1858 cred_t *credp)
1859{ 1859{
@@ -2127,7 +2127,7 @@ int xfs_rm_attempts;
2127STATIC int 2127STATIC int
2128xfs_lock_dir_and_entry( 2128xfs_lock_dir_and_entry(
2129 xfs_inode_t *dp, 2129 xfs_inode_t *dp,
2130 vname_t *dentry, 2130 bhv_vname_t *dentry,
2131 xfs_inode_t *ip) /* inode of entry 'name' */ 2131 xfs_inode_t *ip) /* inode of entry 'name' */
2132{ 2132{
2133 int attempts; 2133 int attempts;
@@ -2341,7 +2341,7 @@ int remove_which_error_return = 0;
2341STATIC int 2341STATIC int
2342xfs_remove( 2342xfs_remove(
2343 bhv_desc_t *dir_bdp, 2343 bhv_desc_t *dir_bdp,
2344 vname_t *dentry, 2344 bhv_vname_t *dentry,
2345 cred_t *credp) 2345 cred_t *credp)
2346{ 2346{
2347 bhv_vnode_t *dir_vp; 2347 bhv_vnode_t *dir_vp;
@@ -2585,7 +2585,7 @@ STATIC int
2585xfs_link( 2585xfs_link(
2586 bhv_desc_t *target_dir_bdp, 2586 bhv_desc_t *target_dir_bdp,
2587 bhv_vnode_t *src_vp, 2587 bhv_vnode_t *src_vp,
2588 vname_t *dentry, 2588 bhv_vname_t *dentry,
2589 cred_t *credp) 2589 cred_t *credp)
2590{ 2590{
2591 xfs_inode_t *tdp, *sip; 2591 xfs_inode_t *tdp, *sip;
@@ -2754,8 +2754,8 @@ std_return:
2754STATIC int 2754STATIC int
2755xfs_mkdir( 2755xfs_mkdir(
2756 bhv_desc_t *dir_bdp, 2756 bhv_desc_t *dir_bdp,
2757 vname_t *dentry, 2757 bhv_vname_t *dentry,
2758 vattr_t *vap, 2758 bhv_vattr_t *vap,
2759 bhv_vnode_t **vpp, 2759 bhv_vnode_t **vpp,
2760 cred_t *credp) 2760 cred_t *credp)
2761{ 2761{
@@ -2989,7 +2989,7 @@ std_return:
2989STATIC int 2989STATIC int
2990xfs_rmdir( 2990xfs_rmdir(
2991 bhv_desc_t *dir_bdp, 2991 bhv_desc_t *dir_bdp,
2992 vname_t *dentry, 2992 bhv_vname_t *dentry,
2993 cred_t *credp) 2993 cred_t *credp)
2994{ 2994{
2995 char *name = VNAME(dentry); 2995 char *name = VNAME(dentry);
@@ -3268,8 +3268,8 @@ xfs_readdir(
3268STATIC int 3268STATIC int
3269xfs_symlink( 3269xfs_symlink(
3270 bhv_desc_t *dir_bdp, 3270 bhv_desc_t *dir_bdp,
3271 vname_t *dentry, 3271 bhv_vname_t *dentry,
3272 vattr_t *vap, 3272 bhv_vattr_t *vap,
3273 char *target_path, 3273 char *target_path,
3274 bhv_vnode_t **vpp, 3274 bhv_vnode_t **vpp,
3275 cred_t *credp) 3275 cred_t *credp)
@@ -3626,7 +3626,7 @@ xfs_fid2(
3626int 3626int
3627xfs_rwlock( 3627xfs_rwlock(
3628 bhv_desc_t *bdp, 3628 bhv_desc_t *bdp,
3629 vrwlock_t locktype) 3629 bhv_vrwlock_t locktype)
3630{ 3630{
3631 xfs_inode_t *ip; 3631 xfs_inode_t *ip;
3632 bhv_vnode_t *vp; 3632 bhv_vnode_t *vp;
@@ -3657,7 +3657,7 @@ xfs_rwlock(
3657void 3657void
3658xfs_rwunlock( 3658xfs_rwunlock(
3659 bhv_desc_t *bdp, 3659 bhv_desc_t *bdp,
3660 vrwlock_t locktype) 3660 bhv_vrwlock_t locktype)
3661{ 3661{
3662 xfs_inode_t *ip; 3662 xfs_inode_t *ip;
3663 bhv_vnode_t *vp; 3663 bhv_vnode_t *vp;
@@ -4502,7 +4502,7 @@ xfs_change_file_space(
4502 xfs_off_t startoffset; 4502 xfs_off_t startoffset;
4503 xfs_off_t llen; 4503 xfs_off_t llen;
4504 xfs_trans_t *tp; 4504 xfs_trans_t *tp;
4505 vattr_t va; 4505 bhv_vattr_t va;
4506 bhv_vnode_t *vp; 4506 bhv_vnode_t *vp;
4507 4507
4508 vp = BHV_TO_VNODE(bdp); 4508 vp = BHV_TO_VNODE(bdp);