]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
xfs: remove unused parameter from refcount code
authorDarrick J. Wong <djwong@kernel.org>
Thu, 28 Apr 2022 19:39:04 +0000 (15:39 -0400)
committerEric Sandeen <sandeen@sandeen.net>
Thu, 28 Apr 2022 19:39:04 +0000 (15:39 -0400)
Source kernel commit: c04c51c524697cd68d668d595f8ebc381ffe426b

The owner info parameter is always NULL, so get rid of the parameter.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Chandan Babu R <chandan.babu@oracle.com>
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
libxfs/xfs_refcount.c

index 6bc43f448f85f1d368cf2641634d8f2946bc925a..076752ce1cd8486153d1b1eee4bb9ee629d9e889 100644 (file)
@@ -917,8 +917,7 @@ xfs_refcount_adjust_extents(
        struct xfs_btree_cur    *cur,
        xfs_agblock_t           *agbno,
        xfs_extlen_t            *aglen,
-       enum xfs_refc_adjust_op adj,
-       struct xfs_owner_info   *oinfo)
+       enum xfs_refc_adjust_op adj)
 {
        struct xfs_refcount_irec        ext, tmp;
        int                             error;
@@ -976,7 +975,7 @@ xfs_refcount_adjust_extents(
                                                cur->bc_ag.pag->pag_agno,
                                                tmp.rc_startblock);
                                xfs_free_extent_later(cur->bc_tp, fsbno,
-                                                 tmp.rc_blockcount, oinfo);
+                                                 tmp.rc_blockcount, NULL);
                        }
 
                        (*agbno) += tmp.rc_blockcount;
@@ -1020,8 +1019,8 @@ xfs_refcount_adjust_extents(
                        fsbno = XFS_AGB_TO_FSB(cur->bc_mp,
                                        cur->bc_ag.pag->pag_agno,
                                        ext.rc_startblock);
-                       xfs_free_extent_later(cur->bc_tp, fsbno, ext.rc_blockcount,
-                                         oinfo);
+                       xfs_free_extent_later(cur->bc_tp, fsbno,
+                                       ext.rc_blockcount, NULL);
                }
 
 skip:
@@ -1049,8 +1048,7 @@ xfs_refcount_adjust(
        xfs_extlen_t            aglen,
        xfs_agblock_t           *new_agbno,
        xfs_extlen_t            *new_aglen,
-       enum xfs_refc_adjust_op adj,
-       struct xfs_owner_info   *oinfo)
+       enum xfs_refc_adjust_op adj)
 {
        bool                    shape_changed;
        int                     shape_changes = 0;
@@ -1093,8 +1091,7 @@ xfs_refcount_adjust(
                cur->bc_ag.refc.shape_changes++;
 
        /* Now that we've taken care of the ends, adjust the middle extents */
-       error = xfs_refcount_adjust_extents(cur, new_agbno, new_aglen,
-                       adj, oinfo);
+       error = xfs_refcount_adjust_extents(cur, new_agbno, new_aglen, adj);
        if (error)
                goto out_error;
 
@@ -1189,12 +1186,12 @@ xfs_refcount_finish_one(
        switch (type) {
        case XFS_REFCOUNT_INCREASE:
                error = xfs_refcount_adjust(rcur, bno, blockcount, &new_agbno,
-                       new_len, XFS_REFCOUNT_ADJUST_INCREASE, NULL);
+                               new_len, XFS_REFCOUNT_ADJUST_INCREASE);
                *new_fsb = XFS_AGB_TO_FSB(mp, pag->pag_agno, new_agbno);
                break;
        case XFS_REFCOUNT_DECREASE:
                error = xfs_refcount_adjust(rcur, bno, blockcount, &new_agbno,
-                       new_len, XFS_REFCOUNT_ADJUST_DECREASE, NULL);
+                               new_len, XFS_REFCOUNT_ADJUST_DECREASE);
                *new_fsb = XFS_AGB_TO_FSB(mp, pag->pag_agno, new_agbno);
                break;
        case XFS_REFCOUNT_ALLOC_COW: