quotaio_v2.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Definitions of structures for vfsv0 quota format
  3. */
  4. #ifndef _LINUX_QUOTAIO_V2_H
  5. #define _LINUX_QUOTAIO_V2_H
  6. #include <linux/types.h>
  7. #include <linux/quota.h>
  8. /*
  9. * Definitions of magics and versions of current quota files
  10. */
  11. #define V2_INITQMAGICS {\
  12. 0xd9c01f11, /* USRQUOTA */\
  13. 0xd9c01927, /* GRPQUOTA */\
  14. 0xd9c03f14, /* PRJQUOTA */\
  15. }
  16. #define V2_INITQVERSIONS {\
  17. 1, /* USRQUOTA */\
  18. 1, /* GRPQUOTA */\
  19. 1, /* PRJQUOTA */\
  20. }
  21. /* First generic header */
  22. struct v2_disk_dqheader {
  23. __le32 dqh_magic; /* Magic number identifying file */
  24. __le32 dqh_version; /* File version */
  25. };
  26. /*
  27. * The following structure defines the format of the disk quota file
  28. * (as it appears on disk) - the file is a radix tree whose leaves point
  29. * to blocks of these structures.
  30. */
  31. struct v2r0_disk_dqblk {
  32. __le32 dqb_id; /* id this quota applies to */
  33. __le32 dqb_ihardlimit; /* absolute limit on allocated inodes */
  34. __le32 dqb_isoftlimit; /* preferred inode limit */
  35. __le32 dqb_curinodes; /* current # allocated inodes */
  36. __le32 dqb_bhardlimit; /* absolute limit on disk space (in QUOTABLOCK_SIZE) */
  37. __le32 dqb_bsoftlimit; /* preferred limit on disk space (in QUOTABLOCK_SIZE) */
  38. __le64 dqb_curspace; /* current space occupied (in bytes) */
  39. __le64 dqb_btime; /* time limit for excessive disk use */
  40. __le64 dqb_itime; /* time limit for excessive inode use */
  41. };
  42. struct v2r1_disk_dqblk {
  43. __le32 dqb_id; /* id this quota applies to */
  44. __le32 dqb_pad;
  45. __le64 dqb_ihardlimit; /* absolute limit on allocated inodes */
  46. __le64 dqb_isoftlimit; /* preferred inode limit */
  47. __le64 dqb_curinodes; /* current # allocated inodes */
  48. __le64 dqb_bhardlimit; /* absolute limit on disk space (in QUOTABLOCK_SIZE) */
  49. __le64 dqb_bsoftlimit; /* preferred limit on disk space (in QUOTABLOCK_SIZE) */
  50. __le64 dqb_curspace; /* current space occupied (in bytes) */
  51. __le64 dqb_btime; /* time limit for excessive disk use */
  52. __le64 dqb_itime; /* time limit for excessive inode use */
  53. };
  54. /* Header with type and version specific information */
  55. struct v2_disk_dqinfo {
  56. __le32 dqi_bgrace; /* Time before block soft limit becomes hard limit */
  57. __le32 dqi_igrace; /* Time before inode soft limit becomes hard limit */
  58. __le32 dqi_flags; /* Flags for quotafile (DQF_*) */
  59. __le32 dqi_blocks; /* Number of blocks in file */
  60. __le32 dqi_free_blk; /* Number of first free block in the list */
  61. __le32 dqi_free_entry; /* Number of block with at least one free entry */
  62. };
  63. #define V2_DQINFOOFF sizeof(struct v2_disk_dqheader) /* Offset of info header in file */
  64. #define V2_DQBLKSIZE_BITS 10 /* Size of leaf block in tree */
  65. #endif /* _LINUX_QUOTAIO_V2_H */