mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 15:27:29 +00:00
[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:
parent
8867bc9bf0
commit
ec86dc02fd
20 changed files with 135 additions and 122 deletions
|
@ -1556,7 +1556,7 @@ xfs_release(
|
|||
if ((error = xfs_inactive_free_eofblocks(mp, ip)))
|
||||
return error;
|
||||
/* Update linux inode block count after free above */
|
||||
LINVFS_GET_IP(vp)->i_blocks = XFS_FSB_TO_BB(mp,
|
||||
vn_to_inode(vp)->i_blocks = XFS_FSB_TO_BB(mp,
|
||||
ip->i_d.di_nblocks + ip->i_delayed_blks);
|
||||
}
|
||||
}
|
||||
|
@ -1637,7 +1637,7 @@ xfs_inactive(
|
|||
if ((error = xfs_inactive_free_eofblocks(mp, ip)))
|
||||
return VN_INACTIVE_CACHE;
|
||||
/* Update linux inode block count after free above */
|
||||
LINVFS_GET_IP(vp)->i_blocks = XFS_FSB_TO_BB(mp,
|
||||
vn_to_inode(vp)->i_blocks = XFS_FSB_TO_BB(mp,
|
||||
ip->i_d.di_nblocks + ip->i_delayed_blks);
|
||||
}
|
||||
goto out;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue