shithub: front

Download patch

ref: 2350b084010b853275b822dddc3385d6ea876030
parent: a71a76745b5fd2f3e50778268bc2cad262748416
author: Ori Bernstein <ori@eigenstate.org>
date: Sun Jun 23 11:33:09 EDT 2024

gefs: remove trace noise

this pushes useful entries out of the ring.

--- a/sys/src/cmd/gefs/blk.c
+++ b/sys/src/cmd/gefs/blk.c
@@ -737,7 +737,6 @@
 	int i;
 
 	i = ihash(bp.addr) % nelem(fs->blklk);
-	tracex("get" , bp, getcallerpc(&bp), -1);
 	qlock(&fs->blklk[i]);
 	if(waserror()){
 		qunlock(&fs->blklk[i]);
--