diff options
author | Christoph Hellwig <hch@lst.de> | 2013-03-12 08:30:36 -0400 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-03-14 17:19:14 -0400 |
commit | 56cea2d088811b8cf7d2893e29bcf369a912de69 (patch) | |
tree | ab131c69db53bb17879d9efada9534d17e54cc57 /fs/xfs/xfs_vnodeops.c | |
parent | c163f9a1760229a95d04e37b332de7d5c1c225cd (diff) |
xfs: take inode version into account in XFS_LITINO
Add a version argument to XFS_LITINO so that it can return different values
depending on the inode version. This is required for the upcoming v3 inodes
with a larger fixed layout dinode.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Ben Myers <bpm@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_vnodeops.c')
-rw-r--r-- | fs/xfs/xfs_vnodeops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_vnodeops.c b/fs/xfs/xfs_vnodeops.c index 77ad74834baa..aa0c06692e18 100644 --- a/fs/xfs/xfs_vnodeops.c +++ b/fs/xfs/xfs_vnodeops.c | |||
@@ -1420,7 +1420,7 @@ xfs_symlink( | |||
1420 | * The symlink will fit into the inode data fork? | 1420 | * The symlink will fit into the inode data fork? |
1421 | * There can't be any attributes so we get the whole variable part. | 1421 | * There can't be any attributes so we get the whole variable part. |
1422 | */ | 1422 | */ |
1423 | if (pathlen <= XFS_LITINO(mp)) | 1423 | if (pathlen <= XFS_LITINO(mp, dp->i_d.di_version)) |
1424 | fs_blocks = 0; | 1424 | fs_blocks = 0; |
1425 | else | 1425 | else |
1426 | fs_blocks = XFS_B_TO_FSB(mp, pathlen); | 1426 | fs_blocks = XFS_B_TO_FSB(mp, pathlen); |