dqblk_v2.h 389 B

1234567891011121314151617181920
  1. /*
  2. * Definitions of structures for vfsv0 quota format
  3. */
  4. #ifndef _LINUX_DQBLK_V2_H
  5. #define _LINUX_DQBLK_V2_H
  6. #include <linux/types.h>
  7. /* id numbers of quota format */
  8. #define QFMT_VFS_V0 2
  9. /* Inmemory copy of version specific information */
  10. struct v2_mem_dqinfo {
  11. unsigned int dqi_blocks;
  12. unsigned int dqi_free_blk;
  13. unsigned int dqi_free_entry;
  14. };
  15. #endif /* _LINUX_DQBLK_V2_H */