diff options
author | Christoph Hellwig <hch@lst.de> | 2021-04-13 21:15:11 +0300 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-04-15 19:35:51 +0300 |
commit | 0779f4a68d4df539a7ea624f7e1560f48aa46ad9 (patch) | |
tree | a422ec275fcbd769c649de25faff690c913316f1 /fs/xfs/xfs_iops.c | |
parent | ac1e067211d1476dae304e8881c10b40c90614d5 (diff) | |
download | linux-0779f4a68d4df539a7ea624f7e1560f48aa46ad9.tar.xz |
xfs: remove XFS_IFINLINE
Just check for an inline format fork instead of the using the equivalent
in-memory XFS_IFINLINE flag.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Diffstat (limited to 'fs/xfs/xfs_iops.c')
-rw-r--r-- | fs/xfs/xfs_iops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c index 607b3f263b06..8f2f74a496bd 100644 --- a/fs/xfs/xfs_iops.c +++ b/fs/xfs/xfs_iops.c @@ -519,7 +519,7 @@ xfs_vn_get_link_inline( struct xfs_inode *ip = XFS_I(inode); char *link; - ASSERT(ip->i_df.if_flags & XFS_IFINLINE); + ASSERT(ip->i_df.if_format == XFS_DINODE_FMT_LOCAL); /* * The VFS crashes on a NULL pointer, so return -EFSCORRUPTED if @@ -1401,7 +1401,7 @@ xfs_setup_iops( inode->i_fop = &xfs_dir_file_operations; break; case S_IFLNK: - if (ip->i_df.if_flags & XFS_IFINLINE) + if (ip->i_df.if_format == XFS_DINODE_FMT_LOCAL) inode->i_op = &xfs_inline_symlink_inode_operations; else inode->i_op = &xfs_symlink_inode_operations; |