Changeset c4c7f5a in mainline
- Timestamp:
- 2011-03-09T22:37:23Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7a34efde
- Parents:
- 8ceba1e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkminix/mkminix.c
r8ceba1e rc4c7f5a 124 124 /*Default block size is 4Kb*/ 125 125 sb.block_size = MFS_MAX_BLOCKSIZE; 126 sb.dirsize = MFS3_DIRSIZE; 126 127 sb.n_inodes = 0; 127 128 sb.longnames = false; … … 385 386 int rc; 386 387 388 /*Compute offset of the first inode table block*/ 387 389 itable_off = FIRST_ZONE(sb->block_size); 388 390 itable_off += sb->zbmap_blocks + sb->ibmap_blocks; … … 594 596 return rc; 595 597 } 598 599 free(ibmap_buf); 600 free(zbmap_buf); 596 601 597 602 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.