6c8f7fc3ba
. add all sys/sys headers not already present to help compiling . take netbsd dirent.h and struct dirent; main result is introducing d_type and d_namlen that have to be set by getdents() in all FS code implementing it . d_off is gone . alignment of the struct has become 8 bytes instead of 4 . remove _MAX_BLOCK_SIZE, _MIN_BLOCK_SIZE, _STATIC_BLOCK_SIZE . libminlib: cleanup unused yet duplicate code . mfs: throw out the long-broken v1, v2 support . new test for dirent contents filled by getdents() Change-Id: I1459755c7ba5e5d1c9396d3a587ce6e63ddc283e
20 lines
720 B
C
20 lines
720 B
C
#ifndef __MFS_TYPE_H__
|
|
#define __MFS_TYPE_H__
|
|
|
|
#include <minix/libminixfs.h>
|
|
|
|
/* Declaration of the V2 inode as it is on the disk (not in core). */
|
|
typedef struct { /* V2.x disk inode */
|
|
u16_t d2_mode; /* file type, protection, etc. */
|
|
u16_t d2_nlinks; /* how many links to this file. HACK! */
|
|
i16_t d2_uid; /* user id of the file's owner. */
|
|
u16_t d2_gid; /* group number HACK! */
|
|
i32_t d2_size; /* current file size in bytes */
|
|
i32_t d2_atime; /* when was file data last accessed */
|
|
i32_t d2_mtime; /* when was file data last changed */
|
|
i32_t d2_ctime; /* when was inode data last changed */
|
|
zone_t d2_zone[V2_NR_TZONES]; /* block nums for direct, ind, and dbl ind */
|
|
} d2_inode;
|
|
|
|
#endif
|
|
|