Changeset e2abab03 in mainline
- Timestamp:
- 2011-03-09T15:25:38Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eef306c
- Parents:
- 84226f0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/ext2fs/ext2fs_ops.c
r84226f0 re2abab03 71 71 } ext2fs_node_t; 72 72 73 /* 74 * Forward declarations of auxiliary functions 75 */ 73 76 static int ext2fs_instance_get(devmap_handle_t, ext2fs_instance_t **); 74 77 static void ext2fs_read_directory(ipc_callid_t, ipc_callid_t, aoff64_t, … … 77 80 size_t, ext2fs_instance_t *, ext2_inode_ref_t *); 78 81 static bool ext2fs_is_dots(const uint8_t *, size_t); 82 static int ext2fs_node_get_core(fs_node_t **, ext2fs_instance_t *, fs_index_t); 79 83 80 84 /* … … 203 207 if (name_size == component_size && bcmp(component, &it.current->name, 204 208 name_size) == 0) { 205 // FIXME: this may be done better (give instance as param) 206 rc = ext2fs_node_get(rfn, eparent->instance->devmap_handle, 209 rc = ext2fs_node_get_core(rfn, eparent->instance, 207 210 it.current->inode); 208 211 if (rc != EOK) { … … 235 238 { 236 239 EXT2FS_DBG("(-,%u,%u)", devmap_handle, index); 240 241 ext2fs_instance_t *inst = NULL; 242 int rc; 243 244 rc = ext2fs_instance_get(devmap_handle, &inst); 245 if (rc != EOK) { 246 return rc; 247 } 248 249 return ext2fs_node_get_core(rfn, inst, index); 250 } 251 252 int ext2fs_node_get_core(fs_node_t **rfn, ext2fs_instance_t *inst, 253 fs_index_t index) 254 { 237 255 int rc; 238 256 fs_node_t *node = NULL; 239 257 ext2fs_node_t *enode = NULL; 240 ext2fs_instance_t *inst = NULL;258 241 259 ext2_inode_ref_t *inode_ref = NULL; 242 260 … … 250 268 free(enode); 251 269 return ENOMEM; 252 } 253 270 } 254 271 fs_node_initialize(node); 255 272 256 rc = ext2fs_instance_get(devmap_handle, &inst);257 if (rc != EOK) {258 free(enode);259 free(node);260 return rc;261 }262 263 273 rc = ext2_filesystem_get_inode_ref(inst->filesystem, index, &inode_ref); 264 274 if (rc != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.