summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/socket/epsocket/save_restore.go
diff options
context:
space:
mode:
authorKevin Krakauer <krakauer@google.com>2019-10-07 13:39:18 -0700
committergVisor bot <gvisor-bot@google.com>2019-10-07 13:57:59 -0700
commit6a9823794975d2401ae1bda3937a63de959192ab (patch)
treec18b9c024fd3a7b07581c4e307410ba5d2b36041 /pkg/sentry/socket/epsocket/save_restore.go
parent8fce24d33a62d9a8fd121bc31046ee8b29443016 (diff)
Rename epsocket to netstack.
PiperOrigin-RevId: 273365058
Diffstat (limited to 'pkg/sentry/socket/epsocket/save_restore.go')
-rw-r--r--pkg/sentry/socket/epsocket/save_restore.go27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkg/sentry/socket/epsocket/save_restore.go b/pkg/sentry/socket/epsocket/save_restore.go
deleted file mode 100644
index f7b8c10cc..000000000
--- a/pkg/sentry/socket/epsocket/save_restore.go
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2018 The gVisor Authors.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-package epsocket
-
-import (
- "gvisor.dev/gvisor/pkg/tcpip/stack"
-)
-
-// afterLoad is invoked by stateify.
-func (s *Stack) afterLoad() {
- s.Stack = stack.StackFromEnv // FIXME(b/36201077)
- if s.Stack == nil {
- panic("can't restore without netstack/tcpip/stack.Stack")
- }
-}