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/syscalls.h | 1 + 1 file changed, 1 insertion(+) (limited to 'executor/syscalls.h') diff --git a/executor/syscalls.h b/executor/syscalls.h index ada3902d4..410c1d816 100644 --- a/executor/syscalls.h +++ b/executor/syscalls.h @@ -22281,6 +22281,7 @@ const call_t syscalls[] = { {"openat$klog", 321}, {"openat$null", 321}, {"openat$pci", 321}, + {"openat$pf", 321}, {"openat$speaker", 321}, {"openat$tty", 321}, {"openat$vmm", 321}, -- cgit mrf-deployment