Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lfs.c
AgeCommit message (Expand)Author
2018-10-20Added 2GiB file size limit and EFBIG reportingChristopher Haster
2018-10-20Fixed issue where a rename causes a split and pushes dir out of syncChristopher Haster
2018-09-29Fix -Wsign-compare errorVincent Dupont
2018-09-27Added -Wjump-misses-init and fixed uninitialized warningsChristopher Haster
2018-09-27Fixed possible infinite loop in deorphan stepChristopher Haster
2018-09-04Fixed issue with corruption due to different cache sizesChristopher Haster
2018-07-20Fix memory leaks in lfs_mount and lfs_formatFreddie Chopin
2018-07-18Merge pull request #76 from ARMmbed/fix-corrupt-readChristopher Haster
2018-07-18Added file config structure and lfs_file_opencfgDamien George
2018-07-16Added handling for corrupt as initial state of blocksfix-corrupt-readChristopher Haster
2018-07-11Use PRIu32 and PRIx32 format specifiers to fix warningsFreddie Chopin
2018-07-10Fixed information leaks through reused cachesChristopher Haster
2018-07-02Fixed shadowed variable warningsDamien George
2018-06-21Changed license to BSD-3-Clauselicense-bsd-3Christopher Haster
2018-04-30Added error when opening multiple files with a statically allocated bufferv1.3Christopher Haster
2018-04-22Fixed issue with trailing dots in file pathsfix-trailing-dotsChristopher Haster
2018-04-11Fixed lookahead overflow and removed unbounded lookahead pointersChristopher Haster
2018-04-09Fixed issue with lookahead trusting old lookahead blocksChristopher Haster
2018-03-19Removed the uninitialized read for invalid superblocksChristopher Haster
2018-03-01Fixed issue updating dir struct when extended dir chainChristopher Haster
2018-03-01Fixed handling of root as target for create operationsChristopher Haster
2018-02-19Added more configurable utilsChristopher Haster
2018-02-19Added conversion to/from little-endian on diskChristopher Haster
2018-02-08Fix incorrect lookahead population before ackChristopher Haster
2018-02-04Fixed some minor error code differencesChristopher Haster
2018-02-04Fixed error check when truncating files to larger sizeChristopher Haster
2018-02-04Silenced more of aldot's warningsChristopher Haster
2018-02-04Commentary typo fixBernhard Reutner-Fischer
2018-02-04Silence shadow warningsBernhard Reutner-Fischer
2018-01-26Add version info for software library and on-disk structuresChristopher Haster
2018-01-21Added lfs_file_truncateChristopher Haster
2018-01-12Reduced ctz traverse runtime by 2xChristopher Haster
2018-01-12Added error code LFS_ERR_NOTEMPTYChristopher Haster
2018-01-11Added asserts on geometry and updated config documentationChristopher Haster
2018-01-11Fixed file truncation without writesChristopher Haster
2018-01-04Fixed positive seek bounds checkingChristopher Haster
2017-12-27Fixed issue with immediate exhaustion and small unaligned storageChristopher Haster
2017-11-22Added directory list for synchronizing in flight directoriesChristopher Haster
2017-11-17Fixed standard name mismatch LFS_ERR_EXISTS -> LFS_ERR_EXISTChristopher Haster
2017-11-17Added sticky-bit for preventing file syncs after write errorsChristopher Haster
2017-11-17Modified lfs_ctz_extend to be a little bit saferChristopher Haster
2017-11-16Fixed issue with committing directories to bad-blocks that are stuckChristopher Haster
2017-11-10Fixed corner case with immediate exhaustion and lookahead==block_countChristopher Haster
2017-11-10Fixed issue with aggressively rounding down lookahead configurationChristopher Haster
2017-11-10Removed stray newline in LFS_ERROR for versionChristopher Haster
2017-10-31Removed toolchain specific warningsChristopher Haster
2017-10-30Adopted alternative implementation for lfs_ctz_indexChristopher Haster
2017-10-18Adopted lfs_ctz_index implementation using popcountChristopher Haster
2017-10-18Slight name change with ctz skip-list functionsChristopher Haster
2017-10-13Removed clamping to block size in ctz linked-listChristopher Haster