fs_shell: Adjust following block_cache API change.

This commit is contained in:
Augustin Cavalier
2024-10-17 12:15:11 -04:00
parent fc7456e9b1
commit 8fbb862695
2 changed files with 11 additions and 14 deletions
+2 -4
View File
@@ -77,16 +77,14 @@ extern void fssh_block_cache_discard(void *_cache,
extern fssh_status_t fssh_block_cache_make_writable(void *_cache,
fssh_off_t blockNumber, int32_t transaction);
extern fssh_status_t fssh_block_cache_get_writable_etc(void *_cache,
fssh_off_t blockNumber, fssh_off_t base,
fssh_off_t length, int32_t transaction,
fssh_off_t blockNumber, int32_t transaction,
void **_block);
extern void * fssh_block_cache_get_writable(void *_cache,
fssh_off_t blockNumber, int32_t transaction);
extern void * fssh_block_cache_get_empty(void *_cache,
fssh_off_t blockNumber, int32_t transaction);
extern fssh_status_t fssh_block_cache_get_etc(void *_cache,
fssh_off_t blockNumber, fssh_off_t base,
fssh_off_t length, const void **_block);
fssh_off_t blockNumber, const void **_block);
extern const void * fssh_block_cache_get(void *_cache,
fssh_off_t blockNumber);
extern fssh_status_t fssh_block_cache_set_dirty(void *_cache,