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