summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/inet/namespace.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/sentry/inet/namespace.go')
-rw-r--r--pkg/sentry/inet/namespace.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkg/sentry/inet/namespace.go b/pkg/sentry/inet/namespace.go
index c16667e7f..029af3025 100644
--- a/pkg/sentry/inet/namespace.go
+++ b/pkg/sentry/inet/namespace.go
@@ -23,7 +23,10 @@ type Namespace struct {
// creator allows kernel to create new network stack for network namespaces.
// If nil, no networking will function if network is namespaced.
- creator NetworkStackCreator
+ //
+ // At afterLoad(), creator will be used to create network stack. Stateify
+ // needs to wait for this field to be loaded before calling afterLoad().
+ creator NetworkStackCreator `state:"wait"`
// isRoot indicates whether this is the root network namespace.
isRoot bool