浏览代码

https://github.com/lorol/LITTLEFS/issues/10

Following:
Sync file upon opening to free storage when overwriting a file
https://github.com/joltwallet/esp_littlefs/pull/22

Fixes out-of-storage issues when overwriting a file by syncing-on-open. Not that this effectively immediately deletes the file being overwritten.

Based on:
https://github.com/esp8266/Arduino/pull/7434
lorol 4 年之前
父节点
当前提交
90dd66f851
共有 1 个文件被更改,包括 16 次插入0 次删除
  1. 16 0
      src/esp_littlefs.c

+ 16 - 0
src/esp_littlefs.c

@@ -927,6 +927,22 @@ static int vfs_littlefs_open(void* ctx, const char * path, int flags, int mode)
         return LFS_ERR_INVAL;
     }
 
+    /* Sync after opening. If we are overwriting a file, this will free that
+     * file's blocks in storage, prevent OOS errors.
+     * See TEST_CASE:
+     *     "Rewriting file frees space immediately (#7426)"
+     */
+    res = lfs_file_sync(efs->fs, &file->file);
+    if(res < 0){
+        errno = -res;
+#ifndef CONFIG_LITTLEFS_USE_ONLY_HASH
+        ESP_LOGV(TAG, "Failed to sync at opening file \"%s\". Error %s (%d)",
+                file->path, esp_littlefs_errno(res), res);
+#else
+        ESP_LOGV(TAG, "Failed to sync at opening file %d. Error %d", fd, res);
+#endif
+    }
+
     file->hash = compute_hash(path);
 #ifndef CONFIG_LITTLEFS_USE_ONLY_HASH
     memcpy(file->path, path, path_len);