diff options
author | Darrick J. Wong <djwong@kernel.org> | 2021-09-16 22:30:34 +0300 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-10-19 21:45:16 +0300 |
commit | bc8883eb775dd18d8b84733d8b3a3955b72d103a (patch) | |
tree | 1f39c172495138d909fe7b7abd6f612b9b64fe41 /fs/xfs/libxfs | |
parent | 9ec691205e7d4a11190519df6561a168ae6af3a4 (diff) | |
download | linux-bc8883eb775dd18d8b84733d8b3a3955b72d103a.tar.xz |
xfs: kill XFS_BTREE_MAXLEVELS
Nobody uses this symbol anymore, so kill it.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Chandan Babu R <chandan.babu@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/libxfs')
-rw-r--r-- | fs/xfs/libxfs/xfs_btree.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/xfs/libxfs/xfs_btree.h b/fs/xfs/libxfs/xfs_btree.h index e488bfcc1fc0..fdf7090c74f4 100644 --- a/fs/xfs/libxfs/xfs_btree.h +++ b/fs/xfs/libxfs/xfs_btree.h @@ -92,8 +92,6 @@ uint32_t xfs_btree_magic(int crc, xfs_btnum_t btnum); #define XFS_BTREE_STATS_ADD(cur, stat, val) \ XFS_STATS_ADD_OFF((cur)->bc_mp, (cur)->bc_statoff + __XBTS_ ## stat, val) -#define XFS_BTREE_MAXLEVELS 9 /* max of all btrees */ - /* * The btree cursor zone hands out cursors that can handle up to this many * levels. This is the known maximum for all btree types. |