shithub: neoventi

Download patch

ref: 45ee8c7f10b56c7164a28bb1dc1fcd10fa0695b0
parent: 95e67b2dead052185152c8b750c68b777151bbb5
author: Noam Preil <noam@pixelhero.dev>
date: Mon Sep 23 23:31:51 EDT 2024

cache: load factor is definitionally always < 1

--- a/cache.c
+++ b/cache.c
@@ -1,8 +1,11 @@
 #include <u.h>
 #include <libc.h>
 
-#pragma pack on
+// This is designed to run with a maximum load factor < 1,
+// and does not support resizing; there is NO EVICTION MECHANISM.
+// Insertion when at 100% capacity is definitionally user error.
 
+#pragma pack on
 typedef struct {
 	Lock;
 	// arena-local block index | arena index << 16
@@ -151,6 +154,8 @@
 			return 1;
 		}
 	}
-	sysfatal("TODO: support eviction");
+	fprint(2, "impossible\n");
+	// DO NOT PROCEED if the cache might be corrupt!
+	abort();
 	return 0;
 }