aboutsummaryrefslogtreecommitdiff
path: root/fs/xfs/libxfs/xfs_dir2_leaf.c
diff options
context:
space:
mode:
authorGravatar Christoph Hellwig <hch@lst.de> 2019-11-08 14:57:51 -0800
committerGravatar Darrick J. Wong <darrick.wong@oracle.com> 2019-11-10 16:54:20 -0800
commit478c7835cb8ee28e73e732642866995f8555df7e (patch)
tree66f49ed8598c5bd29727a108996abf56f4c82c6a /fs/xfs/libxfs/xfs_dir2_leaf.c
parentxfs: move the dir2 leaf header size to struct xfs_da_geometry (diff)
downloadlinux-478c7835cb8ee28e73e732642866995f8555df7e.tar.gz
linux-478c7835cb8ee28e73e732642866995f8555df7e.tar.bz2
linux-478c7835cb8ee28e73e732642866995f8555df7e.zip
xfs: move the max dir2 leaf entries count to struct xfs_da_geometry
Move the max leaf entries count towards our structure for dir/attr geometry parameters. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_dir2_leaf.c')
-rw-r--r--fs/xfs/libxfs/xfs_dir2_leaf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_dir2_leaf.c b/fs/xfs/libxfs/xfs_dir2_leaf.c
index 888d4b0acab8..7e4e77f2f5b5 100644
--- a/fs/xfs/libxfs/xfs_dir2_leaf.c
+++ b/fs/xfs/libxfs/xfs_dir2_leaf.c
@@ -167,7 +167,7 @@ xfs_dir3_leaf_check_int(
* Should factor in the size of the bests table as well.
* We can deduce a value for that from di_size.
*/
- if (hdr->count > ops->leaf_max_ents(geo))
+ if (hdr->count > geo->leaf_max_ents)
return __this_address;
/* Leaves and bests don't overlap in leaf format. */