From b655d91b8cb3b60be16c940d7bf4b192c2624a7b Mon Sep 17 00:00:00 2001 From: Anton Lindqvist Date: Wed, 4 Mar 2020 16:46:46 +0100 Subject: sys/openbsd: prevent killing the ssh VM connection This is one of the root causes of the 'no output from test machine' panic. Issuing a DIOCKILLSTATES ioctl on a /dev/pf file descriptor will cause state associated with ongoing connections to be purged; effectively killing the ssh connection to the VM. Including net/pfvar.h is necessary in order to make use of the DIOCKILLSTATES define. --- executor/defs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'executor/defs.h') diff --git a/executor/defs.h b/executor/defs.h index ecd476951..c9130082b 100644 --- a/executor/defs.h +++ b/executor/defs.h @@ -150,7 +150,7 @@ #if GOARCH_amd64 #define GOARCH "amd64" -#define SYZ_REVISION "361f7adfaff69eb683f0c63eb1cb1a0d4fdd1ca5" +#define SYZ_REVISION "6c58885985007c08bbc08a61d5fcdf22ae662d55" #define SYZ_EXECUTOR_USES_FORK_SERVER 1 #define SYZ_EXECUTOR_USES_SHMEM 1 #define SYZ_PAGE_SIZE 4096 -- cgit mrf-deployment