xfs_dir2_node.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /*
  2. * Copyright (c) 2000 Silicon Graphics, Inc. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of version 2 of the GNU General Public License as
  6. * published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it would be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. *
  12. * Further, this software is distributed without any warranty that it is
  13. * free of the rightful claim of any third person regarding infringement
  14. * or the like. Any license provided herein, whether implied or
  15. * otherwise, applies only to this software file. Patent licenses, if
  16. * any, provided herein do not apply to combinations of this program with
  17. * other software, or any other product whatsoever.
  18. *
  19. * You should have received a copy of the GNU General Public License along
  20. * with this program; if not, write the Free Software Foundation, Inc., 59
  21. * Temple Place - Suite 330, Boston MA 02111-1307, USA.
  22. *
  23. * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
  24. * Mountain View, CA 94043, or:
  25. *
  26. * http://www.sgi.com
  27. *
  28. * For further information regarding this notice, see:
  29. *
  30. * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
  31. */
  32. #ifndef __XFS_DIR2_NODE_H__
  33. #define __XFS_DIR2_NODE_H__
  34. /*
  35. * Directory version 2, btree node format structures
  36. */
  37. struct uio;
  38. struct xfs_dabuf;
  39. struct xfs_da_args;
  40. struct xfs_da_state;
  41. struct xfs_da_state_blk;
  42. struct xfs_inode;
  43. struct xfs_trans;
  44. /*
  45. * Constants.
  46. */
  47. /*
  48. * Offset of the freespace index.
  49. */
  50. #define XFS_DIR2_FREE_SPACE 2
  51. #define XFS_DIR2_FREE_OFFSET (XFS_DIR2_FREE_SPACE * XFS_DIR2_SPACE_SIZE)
  52. #define XFS_DIR2_FREE_FIRSTDB(mp) \
  53. XFS_DIR2_BYTE_TO_DB(mp, XFS_DIR2_FREE_OFFSET)
  54. #define XFS_DIR2_FREE_MAGIC 0x58443246 /* XD2F */
  55. /*
  56. * Structures.
  57. */
  58. typedef struct xfs_dir2_free_hdr {
  59. __uint32_t magic; /* XFS_DIR2_FREE_MAGIC */
  60. __int32_t firstdb; /* db of first entry */
  61. __int32_t nvalid; /* count of valid entries */
  62. __int32_t nused; /* count of used entries */
  63. } xfs_dir2_free_hdr_t;
  64. typedef struct xfs_dir2_free {
  65. xfs_dir2_free_hdr_t hdr; /* block header */
  66. xfs_dir2_data_off_t bests[1]; /* best free counts */
  67. /* unused entries are -1 */
  68. } xfs_dir2_free_t;
  69. #define XFS_DIR2_MAX_FREE_BESTS(mp) \
  70. (((mp)->m_dirblksize - (uint)sizeof(xfs_dir2_free_hdr_t)) / \
  71. (uint)sizeof(xfs_dir2_data_off_t))
  72. /*
  73. * Macros.
  74. */
  75. /*
  76. * Convert data space db to the corresponding free db.
  77. */
  78. #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_DIR2_DB_TO_FDB)
  79. xfs_dir2_db_t
  80. xfs_dir2_db_to_fdb(struct xfs_mount *mp, xfs_dir2_db_t db);
  81. #define XFS_DIR2_DB_TO_FDB(mp,db) xfs_dir2_db_to_fdb(mp, db)
  82. #else
  83. #define XFS_DIR2_DB_TO_FDB(mp,db) \
  84. (XFS_DIR2_FREE_FIRSTDB(mp) + (db) / XFS_DIR2_MAX_FREE_BESTS(mp))
  85. #endif
  86. /*
  87. * Convert data space db to the corresponding index in a free db.
  88. */
  89. #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_DIR2_DB_TO_FDINDEX)
  90. int
  91. xfs_dir2_db_to_fdindex(struct xfs_mount *mp, xfs_dir2_db_t db);
  92. #define XFS_DIR2_DB_TO_FDINDEX(mp,db) xfs_dir2_db_to_fdindex(mp, db)
  93. #else
  94. #define XFS_DIR2_DB_TO_FDINDEX(mp,db) ((db) % XFS_DIR2_MAX_FREE_BESTS(mp))
  95. #endif
  96. /*
  97. * Functions.
  98. */
  99. extern void
  100. xfs_dir2_free_log_bests(struct xfs_trans *tp, struct xfs_dabuf *bp,
  101. int first, int last);
  102. extern int
  103. xfs_dir2_leaf_to_node(struct xfs_da_args *args, struct xfs_dabuf *lbp);
  104. extern xfs_dahash_t
  105. xfs_dir2_leafn_lasthash(struct xfs_dabuf *bp, int *count);
  106. extern int
  107. xfs_dir2_leafn_lookup_int(struct xfs_dabuf *bp,
  108. struct xfs_da_args *args, int *indexp,
  109. struct xfs_da_state *state);
  110. extern int
  111. xfs_dir2_leafn_order(struct xfs_dabuf *leaf1_bp,
  112. struct xfs_dabuf *leaf2_bp);
  113. extern int
  114. xfs_dir2_leafn_split(struct xfs_da_state *state,
  115. struct xfs_da_state_blk *oldblk,
  116. struct xfs_da_state_blk *newblk);
  117. extern int
  118. xfs_dir2_leafn_toosmall(struct xfs_da_state *state, int *action);
  119. extern void
  120. xfs_dir2_leafn_unbalance(struct xfs_da_state *state,
  121. struct xfs_da_state_blk *drop_blk,
  122. struct xfs_da_state_blk *save_blk);
  123. extern int
  124. xfs_dir2_node_addname(struct xfs_da_args *args);
  125. extern int
  126. xfs_dir2_node_lookup(struct xfs_da_args *args);
  127. extern int
  128. xfs_dir2_node_removename(struct xfs_da_args *args);
  129. extern int
  130. xfs_dir2_node_replace(struct xfs_da_args *args);
  131. extern int
  132. xfs_dir2_node_trim_free(struct xfs_da_args *args, xfs_fileoff_t fo,
  133. int *rvalp);
  134. #endif /* __XFS_DIR2_NODE_H__ */