Changeset e2ad8e4 in mainline
- Timestamp:
- 2011-02-27T20:31:49Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7de65cd
- Parents:
- c2eef61c
- Location:
- uspace/srv/fs/minixfs
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs.c
rc2eef61c re2ad8e4 38 38 */ 39 39 40 41 #include "mfs_const.h"42 40 #include <ipc/services.h> 43 41 #include <ipc/ns.h> … … 49 47 #include <libfs.h> 50 48 #include "../../vfs/vfs.h" 49 #include "mfs_const.h" 50 #include "mfs_super.h" 51 51 52 52 #define NAME "mfs" -
uspace/srv/fs/minixfs/mfs_const.h
rc2eef61c re2ad8e4 32 32 33 33 34 #ifndef _ CONST_H_35 #define _ CONST_H_34 #ifndef _MFS_CONST_H_ 35 #define _MFS_CONST_H_ 36 36 37 37 #include <sys/types.h> -
uspace/srv/fs/minixfs/mfs_inode.h
rc2eef61c re2ad8e4 1 #ifndef _ INODE_H_2 #define _ INODE_H_1 #ifndef _MFS_INODE_H_ 2 #define _MFS_INODE_H_ 3 3 4 4 #include "mfs_const.h" … … 17 17 /*Block nums for direct, indirect, and double indirect zones.*/ 18 18 uint32_t zone[V2_NR_TZONES]; 19 } ;19 } __attribute__ ((packed)); 20 20 21 21 #endif
Note:
See TracChangeset
for help on using the changeset viewer.