Changeset 18b6a88 in mainline for uspace/srv/fs/fat/fat_ops.c
- Timestamp:
- 2018-04-15T09:35:04Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c1f44ca
- Parents:
- 8ebe212
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_ops.c
r8ebe212 r18b6a88 241 241 fn = FS_NODE(nodep); 242 242 } else { 243 skip_cache:243 skip_cache: 244 244 /* Try to allocate a new node structure. */ 245 245 fibril_mutex_unlock(&ffn_mutex); … … 1289 1289 goto miss; 1290 1290 1291 err:1291 err: 1292 1292 (void) fat_node_put(fn); 1293 1293 async_answer_0(chandle, rc); 1294 1294 return rc; 1295 1295 1296 miss:1296 miss: 1297 1297 rc = fat_directory_close(&di); 1298 1298 if (rc != EOK) … … 1303 1303 return rc != EOK ? rc : ENOENT; 1304 1304 1305 hit:1305 hit: 1306 1306 pos = di.pos; 1307 1307 rc = fat_directory_close(&di);
Note:
See TracChangeset
for help on using the changeset viewer.