|
|
| version 1.395, 2007/08/24 16:18:10 | version 1.396, 2007/09/11 06:11:49 |
|---|---|
| Line 403 xfs_fs_write_inode( | Line 403 xfs_fs_write_inode( |
| { | { |
| int error = 0, flags = FLUSH_INODE; | int error = 0, flags = FLUSH_INODE; |
| vn_trace_entry(XFS_I(inode), __FUNCTION__, | xfs_itrace_entry(XFS_I(inode)); |
| (inst_t *)__return_address); | |
| if (sync) | if (sync) |
| flags |= FLUSH_SYNC; | flags |= FLUSH_SYNC; |
| error = xfs_inode_flush(XFS_I(inode), flags); | error = xfs_inode_flush(XFS_I(inode), flags); |
| Line 430 xfs_fs_clear_inode( | Line 429 xfs_fs_clear_inode( |
| * find an inode with di_mode == 0 but without IGET_CREATE set. | * find an inode with di_mode == 0 but without IGET_CREATE set. |
| */ | */ |
| if (ip) { | if (ip) { |
| vn_trace_entry(ip, __FUNCTION__, (inst_t *)__return_address); | xfs_itrace_entry(ip); |
| XFS_STATS_INC(vn_rele); | XFS_STATS_INC(vn_rele); |
| XFS_STATS_INC(vn_remove); | XFS_STATS_INC(vn_remove); |
| XFS_STATS_INC(vn_reclaim); | XFS_STATS_INC(vn_reclaim); |
| Line 820 xfs_fs_fill_super( | Line 818 xfs_fs_fill_super( |
| goto fail_vnrele; | goto fail_vnrele; |
| } | } |
| vn_trace_exit(XFS_I(sb->s_root->d_inode), __FUNCTION__, | xfs_itrace_exit(XFS_I(sb->s_root->d_inode)); |
| (inst_t *)__return_address); | |
| kmem_free(args, sizeof(*args)); | kmem_free(args, sizeof(*args)); |
| return 0; | return 0; |