diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-04-15 14:55:02 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-04-16 14:20:36 +0000 |
| commit | 68911a35911bfdeb62bef87d9e844b1c19f86580 (patch) | |
| tree | a13c0f84b1e1c19cfb2fee8defdfb1cd566ecfba /syz-manager/stats.go | |
| parent | 4cd91fc0b5007710bf0f38de6319ce24c31a52e5 (diff) | |
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.
Diffstat (limited to 'syz-manager/stats.go')
| -rw-r--r-- | syz-manager/stats.go | 1 |
1 files changed, 0 insertions, 1 deletions
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{}) } |
