Changeset cc8044e in mainline
- Timestamp:
- 2013-09-13T14:05:30Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d2663d8, eb40d86
- Parents:
- adec6a29
- Location:
- uspace/srv/fs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/ext4fs/ext4fs_ops.c
radec6a29 rcc8044e 876 876 if (rc != EOK) 877 877 return rc; 878 if (NULL == inst)879 return ENOENT;880 878 881 879 ext4_superblock_t *sb = inst->filesystem->superblock; -
uspace/srv/fs/mfs/mfs_ops.c
radec6a29 rcc8044e 1181 1181 return rc; 1182 1182 1183 if (NULL == inst) 1184 return ENOENT; 1185 1186 mfs_count_free_zones(inst, &block_free); 1183 rc = mfs_count_free_zones(inst, &block_free); 1187 1184 *count = block_free; 1188 1185 1189 return EOK;1186 return rc; 1190 1187 } 1191 1188
Note:
See TracChangeset
for help on using the changeset viewer.