You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the PoC we are using a `notifier()` call that returns an
`Option<EventFd>`, which essentially means that we need to clone the
file descriptor. This causes us to call `dup`, which seccomp filters
don't like. If instead we just return an `Option<&EventFd>` we don't
need to clone anything. However, not sure if that would work with the
PCIe logic.
Signed-off-by: Babis Chalios <bchalios@amazon.es>
0 commit comments