From 68911a35911bfdeb62bef87d9e844b1c19f86580 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 15 Apr 2024 14:55:02 +0200 Subject: syz-manager, syz-fuzzer: send exec encoded programs to fuzzer Don't send text program to the fuzzer, instead send exec encoding directly. It's more compact now and does not need complex deserialization. --- syz-manager/stats.go | 1 - 1 file changed, 1 deletion(-) (limited to 'syz-manager/stats.go') diff --git a/syz-manager/stats.go b/syz-manager/stats.go index 53373cf7e..a0719bc45 100644 --- a/syz-manager/stats.go +++ b/syz-manager/stats.go @@ -78,7 +78,6 @@ func (mgr *Manager) initStats() { // Stats imported from the fuzzer (names must match the the fuzzer names). stats.Create("executor restarts", "Number of times executor process was restarted", stats.Rate{}, stats.Graph("executor")) - stats.Create("buffer too small", "Program serialization overflowed exec buffer", stats.NoGraph) stats.Create("no exec requests", "Number of times fuzzer was stalled with no exec requests", stats.Rate{}) stats.Create("no exec duration", "Total duration fuzzer was stalled with no exec requests (ns/sec)", stats.Rate{}) } -- cgit mrf-deployment