type.h 720 B

123456789101112131415161718192021
  1. #ifndef __MFS_TYPE_H__
  2. #define __MFS_TYPE_H__
  3. #include <minix/libminixfs.h>
  4. /* Declaration of the V2 inode as it is on the disk (not in core). */
  5. typedef struct { /* V2.x disk inode */
  6. u16_t d2_mode; /* file type, protection, etc. */
  7. u16_t d2_nlinks; /* how many links to this file. HACK! */
  8. i16_t d2_uid; /* user id of the file's owner. */
  9. u16_t d2_gid; /* group number HACK! */
  10. i32_t d2_size; /* current file size in bytes */
  11. i32_t d2_atime; /* when was file data last accessed */
  12. i32_t d2_mtime; /* when was file data last changed */
  13. i32_t d2_ctime; /* when was inode data last changed */
  14. zone_t d2_zone[V2_NR_TZONES]; /* block nums for direct, ind, and dbl ind */
  15. } d2_inode;
  16. #endif