Changeset fcb0d76 in mainline
- Timestamp:
- 2017-05-10T18:04:21Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 81dd2ed
- Parents:
- 3345b86
- Location:
- uspace/lib/ext4/src
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/src/balloc.c
r3345b86 rfcb0d76 37 37 #include <errno.h> 38 38 #include <sys/types.h> 39 #include "ext4/libext4.h" 39 #include "ext4/balloc.h" 40 #include "ext4/bitmap.h" 41 #include "ext4/block_group.h" 42 #include "ext4/filesystem.h" 43 #include "ext4/inode.h" 44 #include "ext4/superblock.h" 45 #include "ext4/types.h" 40 46 41 47 /** Free block. -
uspace/lib/ext4/src/bitmap.c
r3345b86 rfcb0d76 38 38 #include <block.h> 39 39 #include <sys/types.h> 40 #include "ext4/ libext4.h"40 #include "ext4/bitmap.h" 41 41 42 42 /** Set bit in bitmap to 0 (free). -
uspace/lib/ext4/src/block_group.c
r3345b86 rfcb0d76 37 37 38 38 #include <byteorder.h> 39 #include "ext4/libext4.h" 39 #include "ext4/block_group.h" 40 #include "ext4/superblock.h" 40 41 41 42 /** Get address of block with data block bitmap. -
uspace/lib/ext4/src/directory.c
r3345b86 rfcb0d76 39 39 #include <errno.h> 40 40 #include <malloc.h> 41 #include "ext4/libext4.h" 41 #include <mem.h> 42 #include <str.h> 43 #include "ext4/directory.h" 44 #include "ext4/directory_index.h" 45 #include "ext4/filesystem.h" 46 #include "ext4/inode.h" 47 #include "ext4/superblock.h" 42 48 43 49 /** Get i-node number from directory entry. -
uspace/lib/ext4/src/directory_index.c
r3345b86 rfcb0d76 37 37 #include <byteorder.h> 38 38 #include <errno.h> 39 #include <m alloc.h>39 #include <mem.h> 40 40 #include <sort.h> 41 #include "ext4/libext4.h" 41 #include <stdlib.h> 42 #include <str.h> 43 #include "ext4/directory.h" 44 #include "ext4/directory_index.h" 45 #include "ext4/filesystem.h" 46 #include "ext4/hash.h" 47 #include "ext4/inode.h" 48 #include "ext4/superblock.h" 42 49 43 50 /** Type entry to pass to sorting algorithm. -
uspace/lib/ext4/src/extent.c
r3345b86 rfcb0d76 38 38 #include <errno.h> 39 39 #include <malloc.h> 40 #include "ext4/libext4.h" 40 #include <mem.h> 41 #include "ext4/balloc.h" 42 #include "ext4/extent.h" 43 #include "ext4/inode.h" 44 #include "ext4/superblock.h" 41 45 42 46 /** Get logical number of the block covered by extent. -
uspace/lib/ext4/src/filesystem.c
r3345b86 rfcb0d76 38 38 #include <byteorder.h> 39 39 #include <errno.h> 40 #include <malloc.h> 41 #include <ipc/vfs.h> 40 #include <mem.h> 42 41 #include <align.h> 43 42 #include <crypto.h> 44 #include "ext4/libext4.h" 43 #include <ipc/vfs.h> 44 #include <stdlib.h> 45 #include "ext4/balloc.h" 46 #include "ext4/bitmap.h" 47 #include "ext4/block_group.h" 48 #include "ext4/extent.h" 49 #include "ext4/filesystem.h" 50 #include "ext4/ialloc.h" 51 #include "ext4/inode.h" 52 #include "ext4/superblock.h" 45 53 46 54 /** Initialize filesystem and read all needed data. -
uspace/lib/ext4/src/hash.c
r3345b86 rfcb0d76 35 35 */ 36 36 37 #include "ext4/libext4.h"38 37 #include <errno.h> 38 #include "ext4/hash.h" 39 39 40 40 int ext4_hash_string(ext4_hash_info_t *hinfo, int len, const char *name) -
uspace/lib/ext4/src/ialloc.c
r3345b86 rfcb0d76 36 36 37 37 #include <errno.h> 38 #include <time.h> 39 #include "ext4/libext4.h" 38 #include <stdbool.h> 39 #include "ext4/bitmap.h" 40 #include "ext4/block_group.h" 41 #include "ext4/filesystem.h" 42 #include "ext4/ialloc.h" 43 #include "ext4/superblock.h" 40 44 41 45 -
uspace/lib/ext4/src/inode.c
r3345b86 rfcb0d76 36 36 */ 37 37 38 #include <block.h> 38 39 #include <byteorder.h> 39 40 #include <errno.h> 40 #include <block.h>41 #include "ext4/ libext4.h"41 #include "ext4/inode.h" 42 #include "ext4/superblock.h" 42 43 43 44 /** Compute number of bits for block count. -
uspace/lib/ext4/src/superblock.c
r3345b86 rfcb0d76 37 37 */ 38 38 39 #include <block.h> 39 40 #include <byteorder.h> 40 41 #include <errno.h> 41 #include <block.h>42 42 #include <malloc.h> 43 #include "ext4/libext4.h" 43 #include <mem.h> 44 #include "ext4/superblock.h" 44 45 45 46 /** Get number of i-nodes in the whole filesystem.
Note:
See TracChangeset
for help on using the changeset viewer.