xfs_rmap_item.h 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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_RMAP_ITEM_H__
  7. #define __XFS_RMAP_ITEM_H__
  8. /*
  9. * There are (currently) three pairs of rmap btree redo item types: map, unmap,
  10. * and convert. The common abbreviations for these are RUI (rmap update
  11. * intent) and RUD (rmap update done). The redo item type is encoded in the
  12. * flags field of 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 rmapbt updates. Typically, the first
  17. * transaction will record a bmbt update, followed by some number of
  18. * transactions containing rmapbt updates, and finally transactions with any
  19. * bnobt/cntbt updates.
  20. *
  21. * Should the system crash after the commit of the first transaction but
  22. * before the commit of the final transaction in a series, log recovery will
  23. * use the redo information recorded by the intent items to replay the
  24. * (rmapbt/bnobt/cntbt) metadata updates in the non-first transaction.
  25. */
  26. /* kernel only RUI/RUD definitions */
  27. struct xfs_mount;
  28. struct kmem_zone;
  29. /*
  30. * Max number of extents in fast allocation path.
  31. */
  32. #define XFS_RUI_MAX_FAST_EXTENTS 16
  33. /*
  34. * Define RUI flag bits. Manipulated by set/clear/test_bit operators.
  35. */
  36. #define XFS_RUI_RECOVERED 1
  37. /*
  38. * This is the "rmap update intent" log item. It is used to log the fact that
  39. * some reverse mappings need to change. It is used in conjunction with the
  40. * "rmap update done" log item described below.
  41. *
  42. * These log items follow the same rules as struct xfs_efi_log_item; see the
  43. * comments about that structure (in xfs_extfree_item.h) for more details.
  44. */
  45. struct xfs_rui_log_item {
  46. struct xfs_log_item rui_item;
  47. atomic_t rui_refcount;
  48. atomic_t rui_next_extent;
  49. unsigned long rui_flags; /* misc flags */
  50. struct xfs_rui_log_format rui_format;
  51. };
  52. static inline size_t
  53. xfs_rui_log_item_sizeof(
  54. unsigned int nr)
  55. {
  56. return offsetof(struct xfs_rui_log_item, rui_format) +
  57. xfs_rui_log_format_sizeof(nr);
  58. }
  59. /*
  60. * This is the "rmap update done" log item. It is used to log the fact that
  61. * some rmapbt updates mentioned in an earlier rui item have been performed.
  62. */
  63. struct xfs_rud_log_item {
  64. struct xfs_log_item rud_item;
  65. struct xfs_rui_log_item *rud_ruip;
  66. struct xfs_rud_log_format rud_format;
  67. };
  68. extern struct kmem_zone *xfs_rui_zone;
  69. extern struct kmem_zone *xfs_rud_zone;
  70. struct xfs_rui_log_item *xfs_rui_init(struct xfs_mount *, uint);
  71. struct xfs_rud_log_item *xfs_rud_init(struct xfs_mount *,
  72. struct xfs_rui_log_item *);
  73. int xfs_rui_copy_format(struct xfs_log_iovec *buf,
  74. struct xfs_rui_log_format *dst_rui_fmt);
  75. void xfs_rui_item_free(struct xfs_rui_log_item *);
  76. void xfs_rui_release(struct xfs_rui_log_item *);
  77. int xfs_rui_recover(struct xfs_mount *mp, struct xfs_rui_log_item *ruip);
  78. #endif /* __XFS_RMAP_ITEM_H__ */