Changeset 2674db6 in mainline for uspace/lib/ext4/libext4_filesystem.c
- Timestamp:
- 2011-11-14T16:27:49Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e18de3c
- Parents:
- a9bbce7d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_filesystem.c
ra9bbce7d r2674db6 72 72 73 73 /* Initialize block caching */ 74 rc = block_cache_init(service_id, block_size, 0, CACHE_MODE_WT); 74 // TODO set cache MODE to write through (now writeback for faster testing) 75 rc = block_cache_init(service_id, block_size, 0, CACHE_MODE_WB); 75 76 if (rc != EOK) { 76 77 block_fini(fs->device); … … 465 466 if (rc != EOK) { 466 467 // TODO error 468 EXT4FS_DBG("allocation error"); 467 469 } 468 470
Note:
See TracChangeset
for help on using the changeset viewer.