Changeset b3d7277 in mainline for uspace/lib/ext4/libext4_inode.h
- Timestamp:
- 2011-11-10T09:49:57Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6088193
- Parents:
- 2b9e142
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_inode.h
r2b9e142 rb3d7277 163 163 */ 164 164 extern uint16_t ext4_inode_get_links_count(ext4_inode_t *); 165 /* 166 extern uint64_t ext4_inode_get_blocks_count(ext4_inode_t *) 167 */ 165 extern uint64_t ext4_inode_get_blocks_count(ext4_superblock_t *, ext4_inode_t *); 166 extern int ext4_inode_set_blocks_count(ext4_superblock_t *, ext4_inode_t *, uint64_t); 168 167 extern uint32_t ext4_inode_get_flags(ext4_inode_t *); 169 168 void ext4_inode_set_flags(ext4_inode_t *, uint32_t); 170 169 extern uint32_t ext4_inode_get_direct_block(ext4_inode_t *, uint32_t); 171 170 extern void ext4_inode_set_direct_block(ext4_inode_t *, uint32_t, uint32_t); … … 188 187 extern ext4_extent_header_t * ext4_inode_get_extent_header(ext4_inode_t *); 189 188 extern bool ext4_inode_has_flag(ext4_inode_t *, uint32_t); 189 extern void ext4_inode_clear_flag(ext4_inode_t *, uint32_t); 190 extern void ext4_inode_set_flag(ext4_inode_t *, uint32_t); 190 191 extern bool ext4_inode_can_truncate(ext4_superblock_t *, ext4_inode_t *); 191 192
Note:
See TracChangeset
for help on using the changeset viewer.