Changeset 3345b86 in mainline for uspace/lib/ext4/src
- 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/src
- Files:
-
- 11 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/src/balloc.c
rf066a87 r3345b86 37 37 #include <errno.h> 38 38 #include <sys/types.h> 39 #include " libext4.h"39 #include "ext4/libext4.h" 40 40 41 41 /** Free block. -
uspace/lib/ext4/src/bitmap.c
rf066a87 r3345b86 38 38 #include <block.h> 39 39 #include <sys/types.h> 40 #include " libext4.h"40 #include "ext4/libext4.h" 41 41 42 42 /** Set bit in bitmap to 0 (free). -
uspace/lib/ext4/src/block_group.c
rf066a87 r3345b86 37 37 38 38 #include <byteorder.h> 39 #include " libext4.h"39 #include "ext4/libext4.h" 40 40 41 41 /** Get address of block with data block bitmap. -
uspace/lib/ext4/src/directory.c
rf066a87 r3345b86 39 39 #include <errno.h> 40 40 #include <malloc.h> 41 #include " libext4.h"41 #include "ext4/libext4.h" 42 42 43 43 /** Get i-node number from directory entry. -
uspace/lib/ext4/src/directory_index.c
rf066a87 r3345b86 39 39 #include <malloc.h> 40 40 #include <sort.h> 41 #include " libext4.h"41 #include "ext4/libext4.h" 42 42 43 43 /** Type entry to pass to sorting algorithm. -
uspace/lib/ext4/src/extent.c
rf066a87 r3345b86 38 38 #include <errno.h> 39 39 #include <malloc.h> 40 #include " libext4.h"40 #include "ext4/libext4.h" 41 41 42 42 /** Get logical number of the block covered by extent. -
uspace/lib/ext4/src/filesystem.c
rf066a87 r3345b86 42 42 #include <align.h> 43 43 #include <crypto.h> 44 #include " libext4.h"44 #include "ext4/libext4.h" 45 45 46 46 /** Initialize filesystem and read all needed data. -
uspace/lib/ext4/src/hash.c
rf066a87 r3345b86 35 35 */ 36 36 37 #include " libext4.h"37 #include "ext4/libext4.h" 38 38 #include <errno.h> 39 39 -
uspace/lib/ext4/src/ialloc.c
rf066a87 r3345b86 37 37 #include <errno.h> 38 38 #include <time.h> 39 #include " libext4.h"39 #include "ext4/libext4.h" 40 40 41 41 -
uspace/lib/ext4/src/inode.c
rf066a87 r3345b86 39 39 #include <errno.h> 40 40 #include <block.h> 41 #include " libext4.h"41 #include "ext4/libext4.h" 42 42 43 43 /** Compute number of bits for block count. -
uspace/lib/ext4/src/superblock.c
rf066a87 r3345b86 41 41 #include <block.h> 42 42 #include <malloc.h> 43 #include " libext4.h"43 #include "ext4/libext4.h" 44 44 45 45 /** Get number of i-nodes in the whole filesystem.
Note:
See TracChangeset
for help on using the changeset viewer.