aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_iget.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_iget.c')
-rw-r--r--fs/xfs/xfs_iget.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/xfs/xfs_iget.c b/fs/xfs/xfs_iget.c
index fb69ef180b27..5363025ded7e 100644
--- a/fs/xfs/xfs_iget.c
+++ b/fs/xfs/xfs_iget.c
@@ -157,7 +157,7 @@ again:
157 goto again; 157 goto again;
158 } 158 }
159 159
160 vn_trace_exit(ip, "xfs_iget.alloc", 160 _xfs_itrace_exit(ip, "xfs_iget.alloc",
161 (inst_t *)__return_address); 161 (inst_t *)__return_address);
162 162
163 XFS_STATS_INC(xs_ig_found); 163 XFS_STATS_INC(xs_ig_found);
@@ -212,7 +212,7 @@ finish_inode:
212 xfs_ilock(ip, lock_flags); 212 xfs_ilock(ip, lock_flags);
213 213
214 xfs_iflags_clear(ip, XFS_ISTALE); 214 xfs_iflags_clear(ip, XFS_ISTALE);
215 vn_trace_exit(ip, "xfs_iget.found", 215 _xfs_itrace_exit(ip, "xfs_iget.found",
216 (inst_t *)__return_address); 216 (inst_t *)__return_address);
217 goto return_ip; 217 goto return_ip;
218 } 218 }
@@ -234,7 +234,7 @@ finish_inode:
234 return error; 234 return error;
235 } 235 }
236 236
237 vn_trace_exit(ip, "xfs_iget.alloc", (inst_t *)__return_address); 237 _xfs_itrace_exit(ip, "xfs_iget.alloc", (inst_t *)__return_address);
238 238
239 xfs_inode_lock_init(ip, vp); 239 xfs_inode_lock_init(ip, vp);
240 xfs_iocore_inode_init(ip); 240 xfs_iocore_inode_init(ip);
@@ -467,7 +467,7 @@ xfs_iput(xfs_inode_t *ip,
467{ 467{
468 bhv_vnode_t *vp = XFS_ITOV(ip); 468 bhv_vnode_t *vp = XFS_ITOV(ip);
469 469
470 vn_trace_entry(ip, "xfs_iput", (inst_t *)__return_address); 470 xfs_itrace_entry(ip);
471 xfs_iunlock(ip, lock_flags); 471 xfs_iunlock(ip, lock_flags);
472 VN_RELE(vp); 472 VN_RELE(vp);
473} 473}
@@ -482,7 +482,7 @@ xfs_iput_new(xfs_inode_t *ip,
482 bhv_vnode_t *vp = XFS_ITOV(ip); 482 bhv_vnode_t *vp = XFS_ITOV(ip);
483 struct inode *inode = vn_to_inode(vp); 483 struct inode *inode = vn_to_inode(vp);
484 484
485 vn_trace_entry(ip, "xfs_iput_new", (inst_t *)__return_address); 485 xfs_itrace_entry(ip);
486 486
487 if ((ip->i_d.di_mode == 0)) { 487 if ((ip->i_d.di_mode == 0)) {
488 ASSERT(!xfs_iflags_test(ip, XFS_IRECLAIMABLE)); 488 ASSERT(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));