summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/kernel/context.go
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-10-14 07:18:14 +0000
committergVisor bot <gvisor-bot@google.com>2020-10-14 07:18:14 +0000
commit3329a497f21ee98ab85f000908ed6bb99e189ffc (patch)
treecae0a24bc73971f985d596c36ea6f2dce5456d09 /pkg/sentry/kernel/context.go
parent6a09acd73a2a4cedc3273e9446fc2d8737d45d0d (diff)
parenta7b7b7b9804e9968c1fed5f7b3849233f585a88b (diff)
Merge release-20200928.0-115-ga7b7b7b98 (automated)
Diffstat (limited to 'pkg/sentry/kernel/context.go')
-rw-r--r--pkg/sentry/kernel/context.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/sentry/kernel/context.go b/pkg/sentry/kernel/context.go
index dd5f0f5fa..bb94769c4 100644
--- a/pkg/sentry/kernel/context.go
+++ b/pkg/sentry/kernel/context.go
@@ -81,7 +81,8 @@ func UTSNamespaceFromContext(ctx context.Context) *UTSNamespace {
}
// IPCNamespaceFromContext returns the IPC namespace in which ctx is executing,
-// or nil if there is no such IPC namespace.
+// or nil if there is no such IPC namespace. It takes a reference on the
+// namespace.
func IPCNamespaceFromContext(ctx context.Context) *IPCNamespace {
if v := ctx.Value(CtxIPCNamespace); v != nil {
return v.(*IPCNamespace)