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
2020-12-15Adopted per-member static configurationsconfig-improvementsChristopher Haster
2020-11-29Renamed cache_size -> buffer_sizeChristopher Haster
2020-11-29Changed bd callbacks to use "bd_" prefixChristopher Haster
2020-11-29Changed callbacks to take user-provided context directlyChristopher Haster
2020-11-29Rename config structs to cfg structsChristopher Haster
2020-11-29Exploring ideas for static configurationChristopher Haster
2020-11-29A number of small lfs_util.h QOL changesChristopher Haster
2020-04-03Fix -Wmissing-field-initializersDeomid "rojer" Ryabkov
2020-04-01Merge branch 'master' into test-revamptest-revampChristopher Haster
2020-04-01Merge pull request #266 from FreddieChopin/revert-bypass-cacheChristopher Haster
2020-03-30Last minute tweaks to debug scriptsChristopher Haster
2020-03-29Minor cleanupDerek Thrasher
2020-03-29(chore) updates from PR, we decided not to move forward with changing v1 code...Derek Thrasher
2020-03-29(bugfix) adding line function to clear out all the global 'free' information ...Derek Thrasher
2020-03-20Added "evil" tests and detecion/recovery from bad pointers and infinite loopsChristopher Haster
2020-02-24Change assert to runtime check.Chris Desjardins
2020-02-19Fixed minor things to get CI passing againChristopher Haster
2020-02-12Fixed typo in LFS_MKTAG_IF_ELSEChristopher Haster
2020-02-10Fixed CRC check when prog_size causes multiple CRCs per commitChristopher Haster
2020-02-09Cleaned up dependent fixes on branchChristopher Haster
2020-02-09Fixed lfs_fs_size doubling metadata-pairsChristopher Haster
2020-02-09Fixed broken wear-leveling when block_cycles = 2n-1Christopher Haster
2020-02-09Removed file outlining on ENOSPC in lfs_file_syncChristopher Haster
2020-02-09Added/fixed tests for noop writes (where bd error can't be trusted)Christopher Haster
2020-02-09Fixed more bugs, mostly related to ENOSPC on different geometriesChristopher Haster
2020-01-27Added tests for power-cycled-relocations and fixed the bugs that fell outChristopher Haster
2020-01-21Fixed issues with neighbor updates during movesChristopher Haster
2020-01-21Added/improved disk-reading debug scriptsChristopher Haster
2020-01-21Restructured block devices again for better test exploitationChristopher Haster
2019-12-02Fixed lfs_dir_fetchmatch not understanding overwritten tagsv2.1.4Christopher Haster
2019-12-02Fixed issue with superblock breaking lfs_dir_seekChristopher Haster
2019-12-02Merge pull request #337 from ARMmbed/fix-null-fetchmatchChristopher Haster
2019-12-02Merge pull request #334 from mon/bugfix/inttypesChristopher Haster
2019-12-02Fixed some issues in lfs_migrateChristopher Haster
2019-12-02Stop wear-leveling during migrationChristopher Haster
2019-12-02Fixed issue with directories falling out of date after block relocationChristopher Haster
2019-11-27Fixed implicit change-of-sign warning in lfs_dir_fetchfix-null-fetchmatchChristopher Haster
2019-11-26prepare upstream bugfix of lfsgrunwald-m
2019-11-22Fix some LFS_TRACE format specifiersWill
2019-10-01lfs_dir_*: Cast error return codes to int.Sipke Vriend
2019-10-01lfs_file_rewind: Cast error return codes to int.Sipke Vriend
2019-10-01lfs_stat: Cast error return codes to int.Sipke Vriend
2019-10-01lfs_file_truncate: ensure lfs_file_seek return code is lsf_soff_t and cast er...Sipke Vriend
2019-10-01lfs_remove: Cast tag/error return codes to int.Sipke Vriend
2019-10-01lfs_rename: Cast error return codes to int.Sipke Vriend
2019-10-01Adjust lfs_dir_find return code to ensure 32 bit value.Sipke Vriend
2019-09-19Merge pull request #278 from roykuper13/validate-lfs-cfg-sizesv2.1.2Christopher Haster
2019-09-09build: Fix warnings about shift count width difference for 16 bit compilerSipke Vriend
2019-08-31lfs: Validate lfs-cfg sizes before performing arithmetic logics with themRoy Kupershmid
2019-08-10Revert "Don't bypass cache in `lfs_cache_prog()` and `lfs_cache_read()`"Freddie Chopin