hc
2024-01-31 f9004dbfff8a3fbbd7e2a88c8a4327c7f2f8e5b2
kernel/fs/xfs/xfs_refcount_item.h
....@@ -33,11 +33,6 @@
3333 #define XFS_CUI_MAX_FAST_EXTENTS 16
3434
3535 /*
36
- * Define CUI flag bits. Manipulated by set/clear/test_bit operators.
37
- */
38
-#define XFS_CUI_RECOVERED 1
39
-
40
-/*
4136 * This is the "refcount update intent" log item. It is used to log
4237 * the fact that some reverse mappings need to change. It is used in
4338 * conjunction with the "refcount update done" log item described
....@@ -51,7 +46,6 @@
5146 struct xfs_log_item cui_item;
5247 atomic_t cui_refcount;
5348 atomic_t cui_next_extent;
54
- unsigned long cui_flags; /* misc flags */
5549 struct xfs_cui_log_format cui_format;
5650 };
5751
....@@ -76,12 +70,5 @@
7670
7771 extern struct kmem_zone *xfs_cui_zone;
7872 extern struct kmem_zone *xfs_cud_zone;
79
-
80
-struct xfs_cui_log_item *xfs_cui_init(struct xfs_mount *, uint);
81
-struct xfs_cud_log_item *xfs_cud_init(struct xfs_mount *,
82
- struct xfs_cui_log_item *);
83
-void xfs_cui_item_free(struct xfs_cui_log_item *);
84
-void xfs_cui_release(struct xfs_cui_log_item *);
85
-int xfs_cui_recover(struct xfs_trans *parent_tp, struct xfs_cui_log_item *cuip);
8673
8774 #endif /* __XFS_REFCOUNT_ITEM_H__ */