Эх сурвалжийг харах

Fixed dirty rcache during directory commit

An interesting side-effect of adding internal checks to the littlefs
for block errors, is that the littlefs starts to cover up its own
flaws. Probably out of embarrassment.

In this case, the relocation logic for directories left the littlefs
rcache dirty with invalid data. The littlefs detected the error,
treated it as a corrupted write, and just moved the "corrupted" block
to a new block, which as a side-effect flushes the rcache.

Since committing a dir will end up flushing the rcache to check for
errors anyways, we can just drop the rcache in lfs_bd_sync.
Christopher Haster 8 жил өмнө
parent
commit
a1138a41ce
1 өөрчлөгдсөн 2 нэмэгдсэн , 0 устгасан
  1. 2 0
      lfs.c

+ 2 - 0
lfs.c

@@ -237,6 +237,8 @@ static int lfs_bd_erase(lfs_t *lfs, lfs_block_t block) {
 }
 
 static int lfs_bd_sync(lfs_t *lfs) {
+    lfs->rcache.block = 0xffffffff;
+
     int err = lfs_cache_flush(lfs, &lfs->pcache, NULL);
     if (err) {
         return err;