summaryrefslogtreecommitdiffhomepage
path: root/runsc
diff options
context:
space:
mode:
authorDean Deng <deandeng@google.com>2020-04-24 12:36:14 -0700
committergVisor bot <gvisor-bot@google.com>2020-04-24 12:37:49 -0700
commit632b104aff3fedf7798447eedc5662c973525c66 (patch)
tree838704ef4e7457ed93b0be8e936f0999a43d92e6 /runsc
parent2cc0fd42f462f3942230c4b33ca2825e2a28765d (diff)
Plumb context.Context into kernfs.Inode.Open().
PiperOrigin-RevId: 308304793
Diffstat (limited to 'runsc')
-rw-r--r--runsc/boot/fds.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/boot/fds.go b/runsc/boot/fds.go
index 0cbd63857..7e7a31fbd 100644
--- a/runsc/boot/fds.go
+++ b/runsc/boot/fds.go
@@ -91,7 +91,7 @@ func createFDTableVFS2(ctx context.Context, console bool, stdioFDs []int) (*kern
for appFD, hostFD := range stdioFDs {
// TODO(gvisor.dev/issue/1482): Add TTY support.
- appFile, err := vfshost.ImportFD(k.HostMount(), hostFD, false)
+ appFile, err := vfshost.ImportFD(ctx, k.HostMount(), hostFD, false)
if err != nil {
return nil, err
}