Changeset 68ed0fb in mainline for uspace/srv/fs/minixfs/mfs_super.c
- Timestamp:
- 2011-03-06T14:49:59Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bc24c5e
- Parents:
- 86d0b4b3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs_super.c
r86d0b4b3 r68ed0fb 68 68 69 69 /* initialize libblock */ 70 rc = block_init(devmap_handle, MFS_SUPER _BLOCK_SIZE);70 rc = block_init(devmap_handle, MFS_SUPERBLOCK_SIZE); 71 71 if (rc != EOK) { 72 72 async_answer_0(rid, rc); … … 75 75 76 76 /* prepare the superblock */ 77 rc = block_bb_read(devmap_handle, MFS_SUPER _BLOCK);77 rc = block_bb_read(devmap_handle, MFS_SUPERBLOCK); 78 78 if (rc != EOK) { 79 79 block_fini(devmap_handle);
Note:
See TracChangeset
for help on using the changeset viewer.