xfs_bmap_item.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2016 Oracle. All Rights Reserved.
  4. * Author: Darrick J. Wong <darrick.wong@oracle.com>
  5. */
  6. #ifndef __XFS_BMAP_ITEM_H__
  7. #define __XFS_BMAP_ITEM_H__
  8. /*
  9. * There are (currently) two pairs of bmap btree redo item types: map & unmap.
  10. * The common abbreviations for these are BUI (bmap update intent) and BUD
  11. * (bmap update done). The redo item type is encoded in the flags field of
  12. * each xfs_map_extent.
  13. *
  14. * *I items should be recorded in the *first* of a series of rolled
  15. * transactions, and the *D items should be recorded in the same transaction
  16. * that records the associated bmbt updates.
  17. *
  18. * Should the system crash after the commit of the first transaction but
  19. * before the commit of the final transaction in a series, log recovery will
  20. * use the redo information recorded by the intent items to replay the
  21. * bmbt metadata updates in the non-first transaction.
  22. */
  23. /* kernel only BUI/BUD definitions */
  24. struct xfs_mount;
  25. struct kmem_zone;
  26. /*
  27. * Max number of extents in fast allocation path.
  28. */
  29. #define XFS_BUI_MAX_FAST_EXTENTS 1
  30. /*
  31. * Define BUI flag bits. Manipulated by set/clear/test_bit operators.
  32. */
  33. #define XFS_BUI_RECOVERED 1
  34. /*
  35. * This is the "bmap update intent" log item. It is used to log the fact that
  36. * some reverse mappings need to change. It is used in conjunction with the
  37. * "bmap update done" log item described below.
  38. *
  39. * These log items follow the same rules as struct xfs_efi_log_item; see the
  40. * comments about that structure (in xfs_extfree_item.h) for more details.
  41. */
  42. struct xfs_bui_log_item {
  43. struct xfs_log_item bui_item;
  44. atomic_t bui_refcount;
  45. atomic_t bui_next_extent;
  46. unsigned long bui_flags; /* misc flags */
  47. struct xfs_bui_log_format bui_format;
  48. };
  49. static inline size_t
  50. xfs_bui_log_item_sizeof(
  51. unsigned int nr)
  52. {
  53. return offsetof(struct xfs_bui_log_item, bui_format) +
  54. xfs_bui_log_format_sizeof(nr);
  55. }
  56. /*
  57. * This is the "bmap update done" log item. It is used to log the fact that
  58. * some bmbt updates mentioned in an earlier bui item have been performed.
  59. */
  60. struct xfs_bud_log_item {
  61. struct xfs_log_item bud_item;
  62. struct xfs_bui_log_item *bud_buip;
  63. struct xfs_bud_log_format bud_format;
  64. };
  65. extern struct kmem_zone *xfs_bui_zone;
  66. extern struct kmem_zone *xfs_bud_zone;
  67. struct xfs_bui_log_item *xfs_bui_init(struct xfs_mount *);
  68. struct xfs_bud_log_item *xfs_bud_init(struct xfs_mount *,
  69. struct xfs_bui_log_item *);
  70. void xfs_bui_item_free(struct xfs_bui_log_item *);
  71. void xfs_bui_release(struct xfs_bui_log_item *);
  72. int xfs_bui_recover(struct xfs_trans *parent_tp, struct xfs_bui_log_item *buip);
  73. #endif /* __XFS_BMAP_ITEM_H__ */