Changeset bed0356 in mainline
- Timestamp:
- 2011-03-29T20:01:59Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b438804
- Parents:
- eea1dd5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkminix/mkminix.c
reea1dd5 rbed0356 91 91 static int init_inode_table(const struct mfs_sb_info *sb); 92 92 static int make_root_ino(const struct mfs_sb_info *sb); 93 static int make_root_ino 3(const struct mfs_sb_info *sb);93 static int make_root_ino2(const struct mfs_sb_info *sb); 94 94 static void mark_bmap(uint32_t *bmap, int idx, int v); 95 95 static int insert_dentries(const struct mfs_sb_info *sb); … … 264 264 265 265 /*Make the root inode*/ 266 if (sb.fs_version == 3)267 rc = make_root_ino 3(&sb);266 if (sb.fs_version == 1) 267 rc = make_root_ino(&sb); 268 268 else 269 rc = make_root_ino (&sb);269 rc = make_root_ino2(&sb); 270 270 271 271 if (rc != EOK) { … … 387 387 } 388 388 389 static int make_root_ino3(const struct mfs_sb_info *sb) 389 /*Initialize a Minix V2 root inode on disk, also valid for V3 filesystem*/ 390 static int make_root_ino2(const struct mfs_sb_info *sb) 390 391 { 391 392 struct mfs2_inode *ino_buf;
Note:
See TracChangeset
for help on using the changeset viewer.