Searched refs:orphans (Results 1 – 3 of 3) sorted by relevance
/littlefs-3.5.0-3.4.0/tests/ |
D | test_orphans.toml | 59 [[case]] # reentrant testing for orphans, basically just spam mkdir/remove
|
/littlefs-3.5.0-3.4.0/ |
D | lfs.c | 499 static int lfs_fs_preporphans(lfs_t *lfs, int8_t orphans); 2248 bool orphans = false; in lfs_dir_orphaningcommit() local 2320 orphans = true; in lfs_dir_orphaningcommit() 2372 return orphans ? LFS_OK_ORPHANED : 0; in lfs_dir_orphaningcommit() 2379 int orphans = lfs_dir_orphaningcommit(lfs, dir, attrs, attrcount); in lfs_dir_commit() local 2380 if (orphans < 0) { in lfs_dir_commit() 2381 return orphans; in lfs_dir_commit() 2384 if (orphans) { in lfs_dir_commit() 4435 static int lfs_fs_preporphans(lfs_t *lfs, int8_t orphans) { argument 4436 LFS_ASSERT(lfs_tag_size(lfs->gstate.tag) > 0 || orphans >= 0); [all …]
|
D | DESIGN.md | 1555 With the possibility of orphans, we can build power loss resilient operations 1688 In addition to normal directory tree operations, we can use orphans to evict 1807 Finding orphans and half-orphans is expensive, requiring a _O(n²)_ 1810 Fortunately, we only need to check for orphans on the first allocation after 1814 avoid searching for orphans unless we knew we were specifically interrupted
|