]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
xfs: move xfs_refcount_update_defer_add to xfs_refcount_item.c
authorDarrick J. Wong <djwong@kernel.org>
Wed, 2 Oct 2024 01:22:40 +0000 (18:22 -0700)
committerAndrey Albershteyn <aalbersh@redhat.com>
Fri, 4 Oct 2024 10:42:07 +0000 (12:42 +0200)
Source kernel commit: 783e8a7c9cab6744ebc5dfe75081248ac39181b2

Move the code that adds the incore xfs_refcount_update_item deferred
work data to a transaction live with the CUI log item code.  This means
that the refcount code no longer has to know about the inner workings of
the CUI log items.

As a consequence, we can get rid of the _{get,put}_group helpers.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
libxfs/defer_item.c
libxfs/defer_item.h
libxfs/xfs_refcount.c
libxfs/xfs_refcount.h

index f6560a6b3d9430e2450491ed161f88d381c98b13..98a291c7b785e1b2f1a73000f0339c49bf3547fb 100644 (file)
@@ -364,21 +364,18 @@ xfs_refcount_update_create_done(
        return NULL;
 }
 
-/* Take an active ref to the AG containing the space we're refcounting. */
+/* Add this deferred CUI to the transaction. */
 void
-xfs_refcount_update_get_group(
-       struct xfs_mount                *mp,
+xfs_refcount_defer_add(
+       struct xfs_trans                *tp,
        struct xfs_refcount_intent      *ri)
 {
-       ri->ri_pag = xfs_perag_intent_get(mp, ri->ri_startblock);
-}
+       struct xfs_mount                *mp = tp->t_mountp;
 
-/* Release an active AG ref after finishing refcounting work. */
-static inline void
-xfs_refcount_update_put_group(
-       struct xfs_refcount_intent      *ri)
-{
-       xfs_perag_intent_put(ri->ri_pag);
+       trace_xfs_refcount_defer(mp, ri);
+
+       ri->ri_pag = xfs_perag_intent_get(mp, ri->ri_startblock);
+       xfs_defer_add(tp, &ri->ri_list, &xfs_refcount_update_defer_type);
 }
 
 /* Cancel a deferred refcount update. */
@@ -388,7 +385,7 @@ xfs_refcount_update_cancel_item(
 {
        struct xfs_refcount_intent      *ri = ci_entry(item);
 
-       xfs_refcount_update_put_group(ri);
+       xfs_perag_intent_put(ri->ri_pag);
        kmem_cache_free(xfs_refcount_intent_cache, ri);
 }
 
index be354785bcda6712a5ea6234a7abcd9399639817..93cf1eed58a382a9c7ed1af86fff599d52642657 100644 (file)
@@ -34,4 +34,9 @@ struct xfs_rmap_intent;
 
 void xfs_rmap_defer_add(struct xfs_trans *tp, struct xfs_rmap_intent *ri);
 
+struct xfs_refcount_intent;
+
+void xfs_refcount_defer_add(struct xfs_trans *tp,
+               struct xfs_refcount_intent *ri);
+
 #endif /* __LIBXFS_DEFER_ITEM_H_ */
index d0a057f5cba6737e8ef67cd57ae5e3960c9a76c7..22f8afb27ece1cc7ebdab0a4b03d0167a2aba9dd 100644 (file)
@@ -23,6 +23,7 @@
 #include "xfs_rmap.h"
 #include "xfs_ag.h"
 #include "xfs_health.h"
+#include "defer_item.h"
 
 struct kmem_cache      *xfs_refcount_intent_cache;
 
@@ -1434,10 +1435,7 @@ __xfs_refcount_add(
        ri->ri_startblock = startblock;
        ri->ri_blockcount = blockcount;
 
-       trace_xfs_refcount_defer(tp->t_mountp, ri);
-
-       xfs_refcount_update_get_group(tp->t_mountp, ri);
-       xfs_defer_add(tp, &ri->ri_list, &xfs_refcount_update_defer_type);
+       xfs_refcount_defer_add(tp, ri);
 }
 
 /*
index c94b8f71d407b9a54fbd538cfb3164ca88095578..68acb0b1b4a8781598d4bbb8643a7a70f84e19fd 100644 (file)
@@ -74,9 +74,6 @@ xfs_refcount_check_domain(
        return true;
 }
 
-void xfs_refcount_update_get_group(struct xfs_mount *mp,
-               struct xfs_refcount_intent *ri);
-
 void xfs_refcount_increase_extent(struct xfs_trans *tp,
                struct xfs_bmbt_irec *irec);
 void xfs_refcount_decrease_extent(struct xfs_trans *tp,