diff options
| author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-03-23 23:44:19 -0500 | 
|---|---|---|
| committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-03-23 23:44:19 -0500 | 
| commit | 1ebbe2b20091d306453a5cf480a87e6cd28ae76f (patch) | |
| tree | f5cd7a0fa69b8b1938cb5a0faed2e7b0628072a5 /fs/xfs/xfs_iget.c | |
| parent | ac58c9059da8886b5e8cde012a80266b18ca146e (diff) | |
| parent | 674a396c6d2ba0341ebdd7c1c9950f32f018e2dd (diff) | |
Merge branch 'linus'
Diffstat (limited to 'fs/xfs/xfs_iget.c')
| -rw-r--r-- | fs/xfs/xfs_iget.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/fs/xfs/xfs_iget.c b/fs/xfs/xfs_iget.c index 8e380a1fb79..3ce35a6f700 100644 --- a/fs/xfs/xfs_iget.c +++ b/fs/xfs/xfs_iget.c @@ -258,7 +258,7 @@ again:  				goto finish_inode;  			} else if (vp != inode_vp) { -				struct inode *inode = LINVFS_GET_IP(inode_vp); +				struct inode *inode = vn_to_inode(inode_vp);  				/* The inode is being torn down, pause and  				 * try again. @@ -495,7 +495,7 @@ retry:  	if ((inode = iget_locked(XFS_MTOVFS(mp)->vfs_super, ino))) {  		xfs_inode_t	*ip; -		vp = LINVFS_GET_VP(inode); +		vp = vn_from_inode(inode);  		if (inode->i_state & I_NEW) {  			vn_initialize(inode);  			error = xfs_iget_core(vp, mp, tp, ino, flags, @@ -617,7 +617,7 @@ xfs_iput_new(xfs_inode_t	*ip,  	     uint		lock_flags)  {  	vnode_t		*vp = XFS_ITOV(ip); -	struct inode	*inode = LINVFS_GET_IP(vp); +	struct inode	*inode = vn_to_inode(vp);  	vn_trace_entry(vp, "xfs_iput_new", (inst_t *)__return_address); | 
