Changeset a35b458 in mainline for uspace/srv/fs/mfs/mfs_ops.c
- Timestamp:
- 2018-03-02T20:10:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1380b7
- Parents:
- 3061bc1
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:38:31)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:10:49)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/mfs/mfs_ops.c
r3061bc1 ra35b458 617 617 .index = index 618 618 }; 619 619 620 620 ht_link_t *already_open = hash_table_find(&open_nodes, &key); 621 621 … … 974 974 if (r != EOK) 975 975 goto out_err; 976 976 977 977 r = mfs_write_map(mnode, pos, block, &dummy); 978 978 if (r != EOK) { … … 1202 1202 if (NULL == inst) 1203 1203 return ENOENT; 1204 1204 1205 1205 *size = inst->sbi->block_size; 1206 1206 … … 1213 1213 struct mfs_instance *inst; 1214 1214 errno_t rc; 1215 1215 1216 1216 rc = mfs_instance_get(service_id, &inst); 1217 1217 if (rc != EOK) … … 1220 1220 if (NULL == inst) 1221 1221 return ENOENT; 1222 1222 1223 1223 *count = (uint64_t) MFS_BMAP_SIZE_BITS(inst->sbi, BMAP_ZONE); 1224 1224 … … 1230 1230 { 1231 1231 uint32_t block_free; 1232 1232 1233 1233 struct mfs_instance *inst; 1234 1234 errno_t rc = mfs_instance_get(service_id, &inst);
Note:
See TracChangeset
for help on using the changeset viewer.