Changeset 829d238 in mainline for uspace/srv/fs/ext4fs


Ignore:
Timestamp:
2011-10-10T18:55:04Z (14 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6d52126b
Parents:
7b9381b
Message:

Basic extent structures + applied bugfix from M. Lombardi

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/ext4fs/ext4fs_ops.c

    r7b9381b r829d238  
    833833        uint8_t *buffer;
    834834
     835        // TODO Check extent
     836        if (ext4_filesystem_has_feature_incompatible(inst->filesystem, EXT4_FEATURE_INCOMPAT_EXTENTS)
     837                        && ext4_inode_has_flag(inode_ref->inode, EXT4_INODE_FLAG_EXTENTS)) {
     838                EXT4FS_DBG("Extent found");
     839        }
     840
    835841        file_size = ext4_inode_get_size(inst->filesystem->superblock,
    836842                inode_ref->inode);
Note: See TracChangeset for help on using the changeset viewer.