[XFS] Complete transition away from linvfs naming convention, finally.
SGI-PV: 947038 SGI-Modid: xfs-linux-melb:xfs-kern:25474a Signed-off-by: Nathan Scott <nathans@sgi.com>
This commit is contained in:
@@ -83,7 +83,7 @@ xfs_swapext(
|
||||
|
||||
/* Pull information for the target fd */
|
||||
if (((fp = fget((int)sxp->sx_fdtarget)) == NULL) ||
|
||||
((vp = LINVFS_GET_VP(fp->f_dentry->d_inode)) == NULL)) {
|
||||
((vp = vn_from_inode(fp->f_dentry->d_inode)) == NULL)) {
|
||||
error = XFS_ERROR(EINVAL);
|
||||
goto error0;
|
||||
}
|
||||
@@ -95,7 +95,7 @@ xfs_swapext(
|
||||
}
|
||||
|
||||
if (((tfp = fget((int)sxp->sx_fdtmp)) == NULL) ||
|
||||
((tvp = LINVFS_GET_VP(tfp->f_dentry->d_inode)) == NULL)) {
|
||||
((tvp = vn_from_inode(tfp->f_dentry->d_inode)) == NULL)) {
|
||||
error = XFS_ERROR(EINVAL);
|
||||
goto error0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user