Changeset 3345b86 in mainline for uspace/lib/ext4/include
- Timestamp:
- 2017-05-10T17:42:12Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fcb0d76
- Parents:
- f066a87
- Location:
- uspace/lib/ext4/include/ext4
- Files:
-
- 13 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/include/ext4/balloc.h
rf066a87 r3345b86 35 35 36 36 #include <sys/types.h> 37 #include " libext4_types.h"37 #include "types.h" 38 38 39 39 extern int ext4_balloc_free_block(ext4_inode_ref_t *, uint32_t); -
uspace/lib/ext4/include/ext4/block_group.h
rf066a87 r3345b86 37 37 #include <block.h> 38 38 #include <sys/types.h> 39 #include " libext4_types.h"39 #include "types.h" 40 40 41 41 extern uint64_t ext4_block_group_get_block_bitmap(ext4_block_group_t *, -
uspace/lib/ext4/include/ext4/directory.h
rf066a87 r3345b86 35 35 #define LIBEXT4_LIBEXT4_DIRECTORY_H_ 36 36 37 #include " libext4_types.h"37 #include "ext4/types.h" 38 38 39 39 extern uint32_t ext4_directory_entry_ll_get_inode(ext4_directory_entry_ll_t *); -
uspace/lib/ext4/include/ext4/directory_index.h
rf066a87 r3345b86 34 34 #define LIBEXT4_LIBEXT4_DIRECTORY_INDEX_H_ 35 35 36 #include " libext4_types.h"36 #include "ext4/types.h" 37 37 38 38 extern uint8_t ext4_directory_dx_root_info_get_hash_version( -
uspace/lib/ext4/include/ext4/extent.h
rf066a87 r3345b86 34 34 #define LIBEXT4_LIBEXT4_EXTENT_H_ 35 35 36 #include " libext4_types.h"36 #include "ext4/types.h" 37 37 38 38 extern uint32_t ext4_extent_get_first_block(ext4_extent_t *); -
uspace/lib/ext4/include/ext4/filesystem.h
rf066a87 r3345b86 36 36 37 37 #include <block.h> 38 #include " libext4_types.h"38 #include "ext4/types.h" 39 39 40 40 extern int ext4_filesystem_init(ext4_filesystem_t *, service_id_t, -
uspace/lib/ext4/include/ext4/hash.h
rf066a87 r3345b86 35 35 36 36 #include <sys/types.h> 37 #include " libext4_types.h"37 #include "ext4/types.h" 38 38 39 39 extern int ext4_hash_string(ext4_hash_info_t *, int, const char *); -
uspace/lib/ext4/include/ext4/ialloc.h
rf066a87 r3345b86 34 34 #define LIBEXT4_LIBEXT4_IALLOC_H_ 35 35 36 #include " libext4_types.h"36 #include "ext4/types.h" 37 37 38 38 extern int ext4_ialloc_free_inode(ext4_filesystem_t *, uint32_t, bool); -
uspace/lib/ext4/include/ext4/inode.h
rf066a87 r3345b86 37 37 #include <block.h> 38 38 #include <sys/types.h> 39 #include " libext4_types.h"39 #include "ext4/types.h" 40 40 41 41 extern uint32_t ext4_inode_get_mode(ext4_superblock_t *, ext4_inode_t *); -
uspace/lib/ext4/include/ext4/libext4.h
rf066a87 r3345b86 34 34 #define LIBEXT4_LIBEXT4_H_ 35 35 36 #include " libext4_balloc.h"37 #include " libext4_bitmap.h"38 #include " libext4_block_group.h"39 #include " libext4_directory.h"40 #include " libext4_directory_index.h"41 #include " libext4_extent.h"42 #include " libext4_filesystem.h"43 #include " libext4_hash.h"44 #include " libext4_ialloc.h"45 #include " libext4_inode.h"46 #include " libext4_superblock.h"47 #include " libext4_types.h"36 #include "ext4/balloc.h" 37 #include "ext4/bitmap.h" 38 #include "ext4/block_group.h" 39 #include "ext4/directory.h" 40 #include "ext4/directory_index.h" 41 #include "ext4/extent.h" 42 #include "ext4/filesystem.h" 43 #include "ext4/hash.h" 44 #include "ext4/ialloc.h" 45 #include "ext4/inode.h" 46 #include "ext4/superblock.h" 47 #include "ext4/types.h" 48 48 49 49 #include <stdio.h> -
uspace/lib/ext4/include/ext4/superblock.h
rf066a87 r3345b86 37 37 #include <block.h> 38 38 #include <sys/types.h> 39 #include " libext4_types.h"39 #include "ext4/types.h" 40 40 41 41 extern uint32_t ext4_superblock_get_inodes_count(ext4_superblock_t *);
Note:
See TracChangeset
for help on using the changeset viewer.