aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_inode.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_inode.c')
-rw-r--r--fs/xfs/xfs_inode.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
index 19e7a7b82703..5bb638b445e8 100644
--- a/fs/xfs/xfs_inode.c
+++ b/fs/xfs/xfs_inode.c
@@ -1046,7 +1046,6 @@ xfs_ialloc(
1046{ 1046{
1047 xfs_ino_t ino; 1047 xfs_ino_t ino;
1048 xfs_inode_t *ip; 1048 xfs_inode_t *ip;
1049 struct inode *vp;
1050 uint flags; 1049 uint flags;
1051 int error; 1050 int error;
1052 1051
@@ -1077,7 +1076,6 @@ xfs_ialloc(
1077 } 1076 }
1078 ASSERT(ip != NULL); 1077 ASSERT(ip != NULL);
1079 1078
1080 vp = VFS_I(ip);
1081 ip->i_d.di_mode = (__uint16_t)mode; 1079 ip->i_d.di_mode = (__uint16_t)mode;
1082 ip->i_d.di_onlink = 0; 1080 ip->i_d.di_onlink = 0;
1083 ip->i_d.di_nlink = nlink; 1081 ip->i_d.di_nlink = nlink;
@@ -1220,7 +1218,7 @@ xfs_ialloc(
1220 xfs_trans_log_inode(tp, ip, flags); 1218 xfs_trans_log_inode(tp, ip, flags);
1221 1219
1222 /* now that we have an i_mode we can setup inode ops and unlock */ 1220 /* now that we have an i_mode we can setup inode ops and unlock */
1223 xfs_initialize_vnode(tp->t_mountp, vp, ip); 1221 xfs_setup_inode(ip);
1224 1222
1225 *ipp = ip; 1223 *ipp = ip;
1226 return 0; 1224 return 0;