Changeset acd869e in mainline for uspace/lib/ext4/libext4_filesystem.c


Ignore:
Timestamp:
2011-10-11T10:32:02Z (14 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8958a26
Parents:
6d52126b
Message:

Preparations for extent reading

File:
1 edited

Legend:

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

    r6d52126b racd869e  
    301301        block_t *block;
    302302
     303        // TODO extents
     304        if (ext4_inode_has_flag(inode, EXT4_INODE_FLAG_EXTENTS)) {
     305                EXT4FS_DBG("Inode contains Extent");
     306                // TODO
     307                /*
     308                current_block = ext4_inode_get_extent_block(inode, iblock);
     309                *fblock = current_block;
     310                return EOK;
     311                */
     312
     313        }
     314
    303315        /* Handle simple case when we are dealing with direct reference */
    304316        if (iblock < EXT4_INODE_DIRECT_BLOCK_COUNT) {
Note: See TracChangeset for help on using the changeset viewer.