Changeset 2674db6 in mainline for uspace/lib/ext4/libext4_filesystem.c


Ignore:
Timestamp:
2011-11-14T16:27:49Z (14 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e18de3c
Parents:
a9bbce7d
Message:

New block allocation algorithm (from ext2)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/libext4_filesystem.c

    ra9bbce7d r2674db6  
    7272
    7373        /* 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);
    7576        if (rc != EOK) {
    7677                block_fini(fs->device);
     
    465466                                if (rc != EOK) {
    466467                                        // TODO error
     468                                        EXT4FS_DBG("allocation error");
    467469                                }
    468470
Note: See TracChangeset for help on using the changeset viewer.