shithub: front

Download patch

ref: f628dc850db46a7b81b04dba3eb63ba2258c6fda
parent: ed73544be60161fd4f4f89ce958b8b35fd0b02dc
author: Ori Bernstein <ori@eigenstate.org>
date: Mon Jul 1 22:55:55 EDT 2024

gefs: temporarily disable log compression

There are some bugs with fixes in progress, but
let's not take any risks while those fixes are
in flight.

--- a/sys/src/cmd/gefs/fs.c
+++ b/sys/src/cmd/gefs/fs.c
@@ -2483,6 +2483,7 @@
 				 * arbitrary heuristic -- 10% of our reserved
 				 * space seems like a fine time to compress.
 				 */
+				if(0) /* FIXME: reenable */
 				if(a->nlog >= a->reserve/(10*Blksz)){
 					oldhd[i] = a->loghd;
 					epochstart(id);
--