From 8257de047b6ceb09374e04e44eb9be489aff2d8a Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 27 Nov 2017 09:08:59 +0100 Subject: sys/linux: open files from /proc --- pkg/host/host_linux.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkg/host/host_linux.go') diff --git a/pkg/host/host_linux.go b/pkg/host/host_linux.go index 3c2a3156f..9a763f10b 100644 --- a/pkg/host/host_linux.go +++ b/pkg/host/host_linux.go @@ -99,6 +99,8 @@ func isSupportedSyzkall(c *prog.Syscall) bool { return false } return check(fname) + case "syz_open_procfs": + return true case "syz_open_pts": return true case "syz_fuse_mount": -- cgit mrf-deployment