File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -570,7 +570,7 @@ The following parameters can be specified to set up seccomp:
570
570
571
571
* ** ` defaultAction ` ** * (string, REQUIRED)* - the default action for seccomp. Allowed values are the same as ` syscalls[].action ` .
572
572
* ** ` architectures ` ** * (array of strings, OPTIONAL)* - the architecture used for system calls.
573
- A valid list of constants as of libseccomp v2.3.2 is shown below.
573
+ A valid list of constants as of libseccomp v2.5.0 is shown below.
574
574
575
575
* ` SCMP_ARCH_X86 `
576
576
* ` SCMP_ARCH_X86_64 `
@@ -590,6 +590,7 @@ The following parameters can be specified to set up seccomp:
590
590
* ` SCMP_ARCH_S390X `
591
591
* ` SCMP_ARCH_PARISC `
592
592
* ` SCMP_ARCH_PARISC64 `
593
+ * ` SCMP_ARCH_RISCV64 `
593
594
594
595
* ** ` flags ` ** * (array of strings, OPTIONAL)* - list of flags to use with seccomp(2).
595
596
Original file line number Diff line number Diff line change 47
47
" SCMP_ARCH_S390" ,
48
48
" SCMP_ARCH_S390X" ,
49
49
" SCMP_ARCH_PARISC" ,
50
- " SCMP_ARCH_PARISC64"
50
+ " SCMP_ARCH_PARISC64" ,
51
+ " SCMP_ARCH_RISCV64"
51
52
]
52
53
},
53
54
"SeccompAction" : {
Original file line number Diff line number Diff line change @@ -628,6 +628,7 @@ const (
628
628
ArchS390X Arch = "SCMP_ARCH_S390X"
629
629
ArchPARISC Arch = "SCMP_ARCH_PARISC"
630
630
ArchPARISC64 Arch = "SCMP_ARCH_PARISC64"
631
+ ArchRISCV64 Arch = "SCMP_ARCH_RISCV64"
631
632
)
632
633
633
634
// LinuxSeccompAction taken upon Seccomp rule match
You can’t perform that action at this time.
0 commit comments