Skip to content

Commit

Permalink
Fixed a stupid mount bug
Browse files Browse the repository at this point in the history
  • Loading branch information
pellepl committed Feb 15, 2016
1 parent 05354fa commit 6f4ad5b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions src/spiffs.h
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,7 @@ s32_t SPIFFS_tell(spiffs *fs, spiffs_file fh);
* collection, which in turn can be used to build location tables in ram.
* Used in conjuction with SPIFFS_open_by_page this may improve performance
* when opening a lot of files.
* Must be invoked after mount.
*
* @param fs the file system struct
* @param cb_func the callback on file operations
Expand Down
3 changes: 0 additions & 3 deletions src/spiffs_hydrogen.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,11 @@ s32_t SPIFFS_mount(spiffs *fs, spiffs_config *config, u8_t *work,
void *cache, u32_t cache_size,
spiffs_check_callback check_cb_f) {
void *user_data;
spiffs_file_callback fcb;
SPIFFS_LOCK(fs);
user_data = fs->user_data;
fcb = fs->file_cb_f;
memset(fs, 0, sizeof(spiffs));
memcpy(&fs->cfg, config, sizeof(spiffs_config));
fs->user_data = user_data;
fs->file_cb_f = fcb;
fs->block_count = SPIFFS_CFG_PHYS_SZ(fs) / SPIFFS_CFG_LOG_BLOCK_SZ(fs);
fs->work = &work[0];
fs->lu_work = &work[SPIFFS_CFG_LOG_PAGE_SZ(fs)];
Expand Down

0 comments on commit 6f4ad5b

Please sign in to comment.