aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/libxfs/xfs_alloc.c
diff options
context:
space:
mode:
authorEric Sandeen <sandeen@sandeen.net>2018-04-06 13:09:42 -0400
committerDarrick J. Wong <darrick.wong@oracle.com>2018-04-09 13:23:42 -0400
commita1f69417c6f4d1c5280ffb795da7778cba1e1451 (patch)
tree91b5e753bec450b1c82ccb12b037ae25ffa5fc01 /fs/xfs/libxfs/xfs_alloc.c
parent7fcd3efa1e9ebebf71f9c65f6c0a8ce993122424 (diff)
xfs: non-scrub - remove unused function parameters
Signed-off-by: Eric Sandeen <sandeen@redhat.com> 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_alloc.c')
-rw-r--r--fs/xfs/libxfs/xfs_alloc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/xfs/libxfs/xfs_alloc.c b/fs/xfs/libxfs/xfs_alloc.c
index 39387bdd225d..4bcc095fe44a 100644
--- a/fs/xfs/libxfs/xfs_alloc.c
+++ b/fs/xfs/libxfs/xfs_alloc.c
@@ -1947,7 +1947,7 @@ void
1947xfs_alloc_compute_maxlevels( 1947xfs_alloc_compute_maxlevels(
1948 xfs_mount_t *mp) /* file system mount structure */ 1948 xfs_mount_t *mp) /* file system mount structure */
1949{ 1949{
1950 mp->m_ag_maxlevels = xfs_btree_compute_maxlevels(mp, mp->m_alloc_mnr, 1950 mp->m_ag_maxlevels = xfs_btree_compute_maxlevels(mp->m_alloc_mnr,
1951 (mp->m_sb.sb_agblocks + 1) / 2); 1951 (mp->m_sb.sb_agblocks + 1) / 2);
1952} 1952}
1953 1953
@@ -1959,7 +1959,6 @@ xfs_alloc_compute_maxlevels(
1959 */ 1959 */
1960xfs_extlen_t 1960xfs_extlen_t
1961xfs_alloc_longest_free_extent( 1961xfs_alloc_longest_free_extent(
1962 struct xfs_mount *mp,
1963 struct xfs_perag *pag, 1962 struct xfs_perag *pag,
1964 xfs_extlen_t need, 1963 xfs_extlen_t need,
1965 xfs_extlen_t reserved) 1964 xfs_extlen_t reserved)
@@ -2038,8 +2037,7 @@ xfs_alloc_space_available(
2038 2037
2039 /* do we have enough contiguous free space for the allocation? */ 2038 /* do we have enough contiguous free space for the allocation? */
2040 alloc_len = args->minlen + (args->alignment - 1) + args->minalignslop; 2039 alloc_len = args->minlen + (args->alignment - 1) + args->minalignslop;
2041 longest = xfs_alloc_longest_free_extent(args->mp, pag, min_free, 2040 longest = xfs_alloc_longest_free_extent(pag, min_free, reservation);
2042 reservation);
2043 if (longest < alloc_len) 2041 if (longest < alloc_len)
2044 return false; 2042 return false;
2045 2043