Changeset 7accfac in mainline
- Timestamp:
- 2011-07-25T19:30:58Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b489f66
- Parents:
- 6468072e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs_ops.c
r6468072e r7accfac 258 258 { 259 259 devmap_handle_t devmap = (devmap_handle_t) IPC_GET_ARG1(*request); 260 struct mfs_instance *inst; 261 262 int r = mfs_instance_get(devmap, &inst); 263 if (r != EOK) { 264 async_answer_0(rid, r); 265 return; 266 } 260 267 261 268 (void) block_cache_fini(devmap); 262 269 block_fini(devmap); 270 271 /* Remove the instance from the list */ 272 fibril_mutex_lock(&inst_list_mutex); 273 list_remove(&inst->link); 274 fibril_mutex_unlock(&inst_list_mutex); 275 276 free(inst->sbi); 277 free(inst); 263 278 264 279 async_answer_0(rid, EOK);
Note:
See TracChangeset
for help on using the changeset viewer.