Changeset 7a96476 in mainline for uspace/srv/fs/minixfs/mfs.h
- Timestamp:
- 2011-03-27T13:35:15Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ef76d72
- Parents:
- a04b62d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs.h
ra04b62d r7a96476 71 71 unsigned long zbmap_blocks; 72 72 unsigned long firstdatazone; 73 unsigned long itable_size;74 73 int log2_zone_size; 75 int ino_per_block;76 int dirsize;77 74 int block_size; 78 mfs_version_t fs_version;79 75 uint32_t max_file_size; 80 76 uint16_t magic; 81 77 uint16_t state; 78 79 /*The following fields do not exist on disk but only in memory*/ 80 unsigned long itable_size; 81 mfs_version_t fs_version; 82 int ino_per_block; 83 int dirsize; 82 84 bool long_names; 83 85 bool native; … … 99 101 uint32_t i_izone[V2_NR_INDIRECT_ZONES]; 100 102 103 /*The following fields do not exist on disk but only in memory*/ 101 104 bool dirty; 102 105 fs_index_t index; … … 108 111 char d_name[MFS3_MAX_NAME_LEN]; 109 112 113 /*The following fields do not exist on disk but only in memory*/ 110 114 bool dirty; 111 115 };
Note:
See TracChangeset
for help on using the changeset viewer.