Removed defunct track_branches option in emubd

This commit is contained in:
Christopher Haster
2024-06-06 13:52:50 -05:00
parent 780527d00a
commit e06964269e
2 changed files with 2 additions and 6 deletions
+2 -2
View File
@@ -104,7 +104,7 @@ int lfs_emubd_createcfg(const struct lfs_config *cfg, const char *path,
"%p {.erase_value=%"PRId32", .erase_cycles=%"PRIu32", "
".badblock_behavior=%"PRIu8", .power_cycles=%"PRIu32", "
".powerloss_behavior=%"PRIu8", .powerloss_cb=%p, "
".powerloss_data=%p, .track_branches=%d})",
".powerloss_data=%p})",
(void*)cfg, cfg->context,
(void*)(uintptr_t)cfg->read, (void*)(uintptr_t)cfg->prog,
(void*)(uintptr_t)cfg->erase, (void*)(uintptr_t)cfg->sync,
@@ -112,7 +112,7 @@ int lfs_emubd_createcfg(const struct lfs_config *cfg, const char *path,
path, (void*)bdcfg, bdcfg->erase_value, bdcfg->erase_cycles,
bdcfg->badblock_behavior, bdcfg->power_cycles,
bdcfg->powerloss_behavior, (void*)(uintptr_t)bdcfg->powerloss_cb,
bdcfg->powerloss_data, bdcfg->track_branches);
bdcfg->powerloss_data);
lfs_emubd_t *bd = cfg->context;
bd->cfg = bdcfg;
-4
View File
@@ -94,10 +94,6 @@ struct lfs_emubd_config {
// Data for power-loss callback
void *powerloss_data;
// True to track when power-loss could have occured. Note this involves
// heavy memory usage!
bool track_branches;
// Path to file to use as a mirror of the disk. This provides a way to view
// the current state of the block device.
const char *disk_path;