ref: 7ae531c53df7be259c74f896eb704c74c07c1ece
parent: 130b071161bee5dbb1a03e4a5bd01ce72fc5804a
author: Ori Bernstein <ori@eigenstate.org>
date: Sat Apr 8 11:37:46 EDT 2023
allocations: temporarily turn off live recompression it triggers consistency check failures
--- a/fs.c
+++ b/fs.c
@@ -2125,7 +2125,9 @@
void
runtasks(int, void *)
{
+#ifdef NOTYET
int i, c;
+#endif
Fmsg *m;
Amsg *a;
@@ -2145,6 +2147,7 @@
m->a = a;
chsend(fs->wrchan, m);
+#ifdef NOTYET
/*
* compresslog is designed to be concurrent with allocation,
* so it's safe to call from outside the mutator proc; we
@@ -2163,5 +2166,6 @@
fprint(2, "compress log: %r");
}
}
+#endif
}
}