dnode.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * GRUB -- GRand Unified Bootloader
  3. * Copyright (C) 1999,2000,2001,2002,2003,2004 Free Software Foundation, Inc.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19. /*
  20. * Copyright 2010 Sun Microsystems, Inc. All rights reserved.
  21. * Use is subject to license terms.
  22. */
  23. #ifndef _SYS_DNODE_H
  24. #define _SYS_DNODE_H
  25. #include <zfs/spa.h>
  26. /*
  27. * Fixed constants.
  28. */
  29. #define DNODE_SHIFT 9 /* 512 bytes */
  30. #define DN_MIN_INDBLKSHIFT 10 /* 1k */
  31. #define DN_MAX_INDBLKSHIFT 14 /* 16k */
  32. #define DNODE_BLOCK_SHIFT 14 /* 16k */
  33. #define DNODE_CORE_SIZE 64 /* 64 bytes for dnode sans blkptrs */
  34. #define DN_MAX_OBJECT_SHIFT 48 /* 256 trillion (zfs_fid_t limit) */
  35. #define DN_MAX_OFFSET_SHIFT 64 /* 2^64 bytes in a dnode */
  36. /*
  37. * Derived constants.
  38. */
  39. #define DNODE_SIZE (1 << DNODE_SHIFT)
  40. #define DN_MAX_NBLKPTR ((DNODE_SIZE - DNODE_CORE_SIZE) >> SPA_BLKPTRSHIFT)
  41. #define DN_MAX_BONUSLEN (DNODE_SIZE - DNODE_CORE_SIZE - (1 << SPA_BLKPTRSHIFT))
  42. #define DN_MAX_OBJECT (1ULL << DN_MAX_OBJECT_SHIFT)
  43. #define DNODES_PER_BLOCK_SHIFT (DNODE_BLOCK_SHIFT - DNODE_SHIFT)
  44. #define DNODES_PER_BLOCK (1ULL << DNODES_PER_BLOCK_SHIFT)
  45. #define DNODES_PER_LEVEL_SHIFT (DN_MAX_INDBLKSHIFT - SPA_BLKPTRSHIFT)
  46. #define DNODE_FLAG_SPILL_BLKPTR (1<<2)
  47. #define DN_BONUS(dnp) ((void *)((dnp)->dn_bonus + \
  48. (((dnp)->dn_nblkptr - 1) * sizeof(blkptr_t))))
  49. typedef struct dnode_phys {
  50. uint8_t dn_type; /* dmu_object_type_t */
  51. uint8_t dn_indblkshift; /* ln2(indirect block size) */
  52. uint8_t dn_nlevels; /* 1=dn_blkptr->data blocks */
  53. uint8_t dn_nblkptr; /* length of dn_blkptr */
  54. uint8_t dn_bonustype; /* type of data in bonus buffer */
  55. uint8_t dn_checksum; /* ZIO_CHECKSUM type */
  56. uint8_t dn_compress; /* ZIO_COMPRESS type */
  57. uint8_t dn_flags; /* DNODE_FLAG_* */
  58. uint16_t dn_datablkszsec; /* data block size in 512b sectors */
  59. uint16_t dn_bonuslen; /* length of dn_bonus */
  60. uint8_t dn_pad2[4];
  61. /* accounting is protected by dn_dirty_mtx */
  62. uint64_t dn_maxblkid; /* largest allocated block ID */
  63. uint64_t dn_used; /* bytes (or sectors) of disk space */
  64. uint64_t dn_pad3[4];
  65. blkptr_t dn_blkptr[1];
  66. uint8_t dn_bonus[DN_MAX_BONUSLEN - sizeof(blkptr_t)];
  67. blkptr_t dn_spill;
  68. } dnode_phys_t;
  69. #endif /* _SYS_DNODE_H */