File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -581,14 +581,15 @@ class SeccompPolicyBuilder
581
581
allowed_syscalls.insert (__NR_fdatasync); // synchronize a file's in-core state with storage device
582
582
allowed_syscalls.insert (__NR_flock); // apply or remove an advisory lock on an open file
583
583
allowed_syscalls.insert (__NR_fstat); // get file status
584
- allowed_syscalls.insert (__NR_newfstatat ); // get file status
584
+ allowed_syscalls.insert (__NR_fstatfs ); // get file system status
585
585
allowed_syscalls.insert (__NR_fsync); // synchronize a file's in-core state with storage device
586
586
allowed_syscalls.insert (__NR_ftruncate); // truncate a file to a specified length
587
587
allowed_syscalls.insert (__NR_getcwd); // get current working directory
588
588
allowed_syscalls.insert (__NR_getdents); // get directory entries
589
589
allowed_syscalls.insert (__NR_getdents64); // get directory entries
590
590
allowed_syscalls.insert (__NR_lstat); // get file status
591
591
allowed_syscalls.insert (__NR_mkdir); // create a directory
592
+ allowed_syscalls.insert (__NR_newfstatat); // get file status
592
593
allowed_syscalls.insert (__NR_open); // open and possibly create a file
593
594
allowed_syscalls.insert (__NR_openat); // open and possibly create a file
594
595
allowed_syscalls.insert (__NR_readlink); // read value of a symbolic link
You can’t perform that action at this time.
0 commit comments