summaryrefslogtreecommitdiff
path: root/src/ext4.c
AgeCommit message (Collapse)Author
2018-09-26ext4: fix ext4_fsymlink creationGrzegorz Kostka
Solve the problem with long symbolic links creation. Thanks to: @cobenhan
2018-04-05ext4: move ext4_fs_alloc_inode result check to right placeGrzegorz Kostka
2017-10-18Use int64_t as offset to ext4_fseek.Fan Deng
This change makes it possible to fseek backwards in fseek. Tested: make test_all
2017-10-17Remove an unuseful if check in ext4.c.Fan Deng
The if check on s_bdevices[i].name is unuseful, as 'name' always evaluates to true: if (s_bdevices[i].name) { ... } This change removes the check to be consistent with the rest of the code (see line 124 and 144).
2017-05-31ext4: fix transaction start/stop scopesGrzegorz Kostka
Remove transaction scope from ext4_generic_open2 method.
2017-04-19ext4: add ext4_inode_exist methodgkostka
2017-04-05Change include type policygkostka
Since all headers are ins separate directory, includes could be done by using <> instead of "".
2017-02-21ext4_mkfs: add journal node creation supportgkostka
2017-02-19ext4: improve dox documentation stylegkostka
2017-02-17ext4: little style improvementsGrzegorz Kostka
2017-02-17ext4: remove dynamic block cache allocation in ext4_mountGrzegorz Kostka
2017-02-17ext4: remove block cache parameter from device_register functiongkostka
This parameter is useless since cache is always initialized by malloc.
2017-02-17ext4: add block device unregister by name & all methodsgkostka
2017-02-16ext4: remove read-only check in get atime/mtime/ctime/mode/own methodsgkostka
2017-02-15ext4: add methods to access file mode, owner, atime, mtime, ctimegkostka
2017-01-18ext4: add ext4_cache_flush for explicit cache flushgkostka
2016-08-19ext4: easy malloc/calloc/realloc/free substitutionMichaƂ Majewicz
2016-06-30ext4: add filetype checking to ext4_mknodKaho Ng
2016-06-30ext4: special inode creation supportKaho Ng
2016-06-28ext4: fix possible access violation when copying name fieldsKaho Ng
2016-06-20ext4: @replace in ext4_setxattr() is deprecatedKaho Ng
2016-06-20ext4_xattr: rework the EA submoduleKaho Ng
2016-05-07ext4: count on free blocks and inodes number after journal recovery.ngkaho1234
2016-03-31ext4: add rename/move directory procedure to main APIgkostka
2016-03-17ext4_xattr: fix xattr functions not recognizing acl attribute name.ngkaho1234
2016-01-31Refactor header files dependencies.ngkaho1234
2016-01-30ext4: fix ext4_fread failing when fs on read-only mode.ngkaho1234
2016-01-30ext4: add read_only parameter to ext4_mount routine.ngkaho1234
Now users can mount a filesystem as read-only mode explicitly.
2016-01-28Reconstruct source directory tree.ngkaho1234