aboutsummaryrefslogtreecommitdiffstats
path: root/syz-cluster/workflow/configs/all/base.cfg
blob: b99266c98a518e48809901bc5fec75b27d35d291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
    "name": "base",
    "target": "linux/amd64",
    "kernel_obj": "/base/obj",
    "kernel_build_src": "/workdir",
    "image": "/base/image",
    "syzkaller": "/syzkaller",
    "workdir": "/workdir",
    "type": "qemu",
# The perf_event_open call generates too many false positive stalls.
# The hfs/gfs mounts result in too many distracting kernel crashes that slow down diff fuzzing.
    "disable_syscalls": [ "perf_event_open*", "syz_mount_image$hfs", "syz_mount_image$gfs*"],
    "procs": 3,
    "sandbox": "none",
    "experimental": {"cover_edges": false},
    "vm": {    
      "count": 4,
      "cmdline": "root=/dev/sda1",
      "kernel": "/base/kernel",
      "cpu": 2,
      "mem": 3072,
      "qemu_args": "-machine pc-q35-7.1 -enable-kvm -smp 2,sockets=2,cores=1"
    }
}