Changeset 7a96476 in mainline for uspace/srv/fs/minixfs/mfs.h


Ignore:
Timestamp:
2011-03-27T13:35:15Z (14 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ef76d72
Parents:
a04b62d
Message:

Add some comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/minixfs/mfs.h

    ra04b62d r7a96476  
    7171        unsigned long zbmap_blocks;
    7272        unsigned long firstdatazone;
    73         unsigned long itable_size;
    7473        int log2_zone_size;
    75         int ino_per_block;
    76         int dirsize;
    7774        int block_size;
    78         mfs_version_t fs_version;
    7975        uint32_t max_file_size;
    8076        uint16_t magic;
    8177        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;
    8284        bool long_names;
    8385        bool native;
     
    99101        uint32_t        i_izone[V2_NR_INDIRECT_ZONES];
    100102
     103        /*The following fields do not exist on disk but only in memory*/
    101104        bool dirty;
    102105        fs_index_t index;
     
    108111        char d_name[MFS3_MAX_NAME_LEN];
    109112
     113        /*The following fields do not exist on disk but only in memory*/
    110114        bool dirty;
    111115};
Note: See TracChangeset for help on using the changeset viewer.