Changeset 3711e7e in mainline for uspace/lib/ext4/libext4_filesystem.h
- Timestamp:
- 2011-10-05T09:35:12Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3712434
- Parents:
- cfa1a8a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_filesystem.h
rcfa1a8a r3711e7e 35 35 36 36 #include <libblock.h> 37 #include "libext4_block_group.h" 38 #include "libext4_inode.h" 37 39 #include "libext4_superblock.h" 38 40 … … 42 44 } ext4_filesystem_t; 43 45 44 #define EXT4_MAX_BLOCK_SIZE 65536 //64 KiB45 46 #define EXT4_MAX_BLOCK_SIZE 65536 //64 KiB 47 #define EXT4_REV0_INODE_SIZE 128 46 48 47 49 /* Compatible features */ … … 99 101 100 102 extern int ext4_filesystem_init(ext4_filesystem_t *, service_id_t); 103 extern void ext4_filesystem_fini(ext4_filesystem_t *fs); 101 104 extern int ext4_filesystem_check_sanity(ext4_filesystem_t *fs); 102 105 extern int ext4_filesystem_check_features(ext4_filesystem_t *, bool *); 103 extern void ext4_filesystem_fini(ext4_filesystem_t *fs); 106 extern int ext4_filesystem_get_block_group_ref(ext4_filesystem_t *, uint32_t, 107 ext4_block_group_ref_t **); 108 extern int ext4_filesystem_get_inode_ref(ext4_filesystem_t *, uint32_t, 109 ext4_inode_ref_t **); 110 104 111 105 112 #endif
Note:
See TracChangeset
for help on using the changeset viewer.