Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions docs/seccompiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,11 @@ This means that Firecracker has a JSON file for each supported target (currently
determined by the arch-libc combinations). You can view them in
`resources/seccomp`.

At the top level, the file requires an object that maps thread categories (vmm,
api and vcpu) to seccomp filters:
At the top level, the file contains an object that maps thread categories to
seccomp filters. Firecracker allows the `vmm`, `api`, `vcpu`, and `blk_worker`
categories. The `vmm`, `api`, and `vcpu` categories are mandatory. The
`blk_worker` category is optional and is needed only when a block device uses a
dedicated worker thread.

```
{
Expand All @@ -91,6 +94,7 @@ api and vcpu) to seccomp filters:
},
"api": {...},
"vcpu": {...},
"blk_worker": {...}
}
```

Expand Down
Loading
Loading