aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/host/syscalls_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/host/syscalls_linux.go')
-rw-r--r--pkg/host/syscalls_linux.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/pkg/host/syscalls_linux.go b/pkg/host/syscalls_linux.go
index d59fe491b..b690f1de7 100644
--- a/pkg/host/syscalls_linux.go
+++ b/pkg/host/syscalls_linux.go
@@ -41,10 +41,6 @@ func isSupported(c *prog.Syscall, target *prog.Target, sandbox string) (bool, st
if c.CallName == "pkey_alloc" {
return isSyzPkeySetSupported(c, target, sandbox)
}
- if c.Name == "ioctl$EXT4_IOC_SHUTDOWN" && sandbox == "none" {
- // Don't shutdown root filesystem.
- return false, "unsafe with sandbox=none"
- }
return isSupportedSyscall(c, target)
}