From 4b42962bfebc45ea22f9a5af63b49aa5ed418749 Mon Sep 17 00:00:00 2001 From: Alexander Potapenko Date: Tue, 2 Jul 2024 10:17:57 +0200 Subject: sys/linux: re-enable EXT4_IOC_SHUTDOWN and EXT4_IOC_RESIZE_FS Now that we chroot into tmpfs with sandbox=none, it should be safe to allow using these ioctls, because they won't break the whole VM. Update #971. --- sys/linux/init_test.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'sys/linux/init_test.go') diff --git a/sys/linux/init_test.go b/sys/linux/init_test.go index 7379f74c0..74642f6c9 100644 --- a/sys/linux/init_test.go +++ b/sys/linux/init_test.go @@ -47,10 +47,6 @@ func TestNeutralize(t *testing.T) { In: `ioctl(0x0, 0x200000c0045877, 0x0)`, Out: `ioctl(0x0, 0xc0045878, 0x0)`, }, - { - In: `ioctl$int_in(0x0, 0x2000008004587d, 0x0)`, - Out: `ioctl$int_in(0x0, 0x6609, 0x0)`, - }, { In: `fanotify_mark(0x1, 0x2, 0x407fe029, 0x3, 0x0)`, Out: `fanotify_mark(0x1, 0x2, 0x4078e029, 0x3, 0x0)`, -- cgit mrf-deployment