Changeset 7413683 in mainline for uspace/srv/fs/minixfs/mfs_super.h


Ignore:
Timestamp:
2011-03-04T18:32:29Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
63ffffd
Parents:
eaf9794
Message:

Do not duplicate code, use symbolic lynks instead of copy-paste

File:
1 edited

Legend:

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

    reaf9794 r7413683  
    3535
    3636#include "mfs_const.h"
    37 #include "../../vfs/vfs.h"
    3837
    3938#define MFS_MAGIC_V1            0x137F
     
    4645#define MFS_MAGIC_V3R           0x5A4D
    4746
     47/*V3 superblock data on disk*/
    4848struct mfs_superblock {
    4949        /*Total number of inodes on the device*/
     
    6666        /*Magic number used to recognize MinixFS and to detect on-disk endianness*/
    6767        int16_t         s_magic;
    68 
    69         /* The following fields are valid only for MinixFS V3 */
    70 
    7168        int16_t         s_pad2;
    7269        /*Filesystem block size expressed in bytes*/
     
    8279} mfs_version_t;
    8380
    84 void mfs_mounted(ipc_callid_t rid, ipc_call_t *request);
    85 
    8681#endif
    8782
Note: See TracChangeset for help on using the changeset viewer.